File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -213,19 +213,19 @@ public string MasterKey
213
213
/// <summary>
214
214
/// Authenticates this client as belonging to your application. This must be
215
215
/// 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
217
217
/// Application startup.
218
218
/// </summary>
219
219
/// <param name="identifier">The Application ID provided in the Parse dashboard.
220
220
/// </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.
222
222
/// </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 } ) ;
224
224
225
225
/// <summary>
226
226
/// Authenticates this client as belonging to your application. This must be
227
227
/// 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
229
229
/// Application startup.
230
230
/// </summary>
231
231
/// <param name="configuration">The configuration to initialize Parse with.
You can’t perform that action at this time.
0 commit comments