Skip to content
Raymond Brady edited this page Apr 25, 2016 · 3 revisions

Welcome to the Parse-SDK-dotNET wiki!

Quick Start | Connect your app to Parse Server

Install the SDK

See the nuget site for details: https://www.nuget.org/packages/Parse

Be sure to add the following using statement.

using Parse;

Then call ParseClient.Initialize. Set your application id and Parse Server URL:

  ParseClient.initialize(new ParseClient.Configuration {
    ApplicationId = "YOUR_APP_ID",
    Server = "http://YOUR_PARSE_SERVER/parse/"
  });

Server URL

  • Server port may be needed depending on your setup. ie: http://YOUR_PARSE_SERVER:1377/parse/
  • Be sure to include the trailing slash.

After installing the SDK and initializing the ParseClient. Try saving to your parse server. For example:

var testObject = new ParseObject("TestObject");
testObject["foo"] = "bar";
await testObject.SaveAsync();
Clone this wiki locally