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
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.
You can’t perform that action at this time.
0 commit comments