Skip to content

Commit daafde9

Browse files
Update documentation around initialization of ParseClient (#330)
* Update README.md Fix documentation regarding initializing the ParseClient Fix description of initialization. Fix typo on ApplicationId Revert usage of WindowsKey to Key
1 parent afbcf97 commit daafde9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ Then, in your program's entry point, paste the following code, with the text ref
2424
```cs
2525
ParseClient.Initialize(new ParseClient.Configuration
2626
{
27-
ApplicationID = "",
27+
ApplicationId = "",
2828
Key = "",
29-
ServerURI = ""
29+
Server = "",
3030
});
3131
```
3232

33-
`ApplicationID` is your app's `ApplicationId` field from your Parse Server.
33+
`ApplicationId` is your app's `ApplicationId` field from your Parse Server.
3434
`Key` is your app's `DotNetKey` field from your Parse Server.
35-
`ServerURI` is the full URL to your web-hosted Parse Server.
35+
`Server` is the full URL to your web-hosted Parse Server.
3636

3737
If you would like to, you can also set the `MasterKey` property, which will allow the SDK to bypass any CLPs and object permissions that are set. This property should be compatible with read-only master keys as well.
3838

0 commit comments

Comments
 (0)