Skip to content

Commit 9823a6f

Browse files
committed
Changed signature of ParseClient.Initialize method to expect serverURI instead of parse.com key as the parse service is shut down since early 2017
1 parent 341cc27 commit 9823a6f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Parse/Public/ParseClient.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,19 +213,19 @@ public string MasterKey
213213
/// <summary>
214214
/// Authenticates this client as belonging to your application. This must be
215215
/// called before your application can use the Parse library. The recommended
216-
/// way is to put a call to <c>ParseFramework.Initialize</c> in your
216+
/// way is to put a call to <c>ParseClient.Initialize</c> in your
217217
/// Application startup.
218218
/// </summary>
219219
/// <param name="identifier">The Application ID provided in the Parse dashboard.
220220
/// </param>
221-
/// <param name="key">The .NET API Key provided in the Parse dashboard.
221+
/// <param name="serverURI">The server URI provided in the Parse dashboard.
222222
/// </param>
223-
public static void Initialize(string identifier, string key) => Initialize(new Configuration { ApplicationID = identifier, Key = key });
223+
public static void Initialize(string identifier, string serverURI) => Initialize(new Configuration { ApplicationID = identifier, ServerURI = serverURI });
224224

225225
/// <summary>
226226
/// Authenticates this client as belonging to your application. This must be
227227
/// called before your application can use the Parse library. The recommended
228-
/// way is to put a call to <c>ParseFramework.Initialize</c> in your
228+
/// way is to put a call to <c>ParseClient.Initialize</c> in your
229229
/// Application startup.
230230
/// </summary>
231231
/// <param name="configuration">The configuration to initialize Parse with.

0 commit comments

Comments
 (0)