C# Class Parse.ParseClient

ParseClient contains static functions that handle global configuration for the Parse library.
Exibir arquivo Open project: Bernie-2016/Connect-Windows Class Usage Examples

Private Properties

Property Type Description
BuildQueryString string
DecodeQueryString string>.IDictionary
DeserializeJsonString object>.IDictionary
GetParseType System.Type
ParseClient Parse.Internal
SerializeJsonString string

Public Methods

Method Description
Initialize ( Configuration configuration ) : void

Authenticates this client as belonging to your application. This must be called before your application can use the Parse library. The recommended way is to put a call to ParseFramework.Initialize in your Application startup.

Initialize ( string applicationId, string dotnetKey ) : void

Authenticates this client as belonging to your application. This must be called before your application can use the Parse library. The recommended way is to put a call to ParseFramework.Initialize in your Application startup.

Private Methods

Method Description
BuildQueryString ( object>.IDictionary parameters ) : string
DecodeQueryString ( string queryString ) : string>.IDictionary
DeserializeJsonString ( string jsonData ) : object>.IDictionary
GetParseType ( string name ) : Type
ParseClient ( ) : Parse.Internal
SerializeJsonString ( object>.IDictionary jsonData ) : string

Method Details

Initialize() public static method

Authenticates this client as belonging to your application. This must be called before your application can use the Parse library. The recommended way is to put a call to ParseFramework.Initialize in your Application startup.
public static Initialize ( Configuration configuration ) : void
configuration Configuration The configuration to initialize Parse with. ///
return void

Initialize() public static method

Authenticates this client as belonging to your application. This must be called before your application can use the Parse library. The recommended way is to put a call to ParseFramework.Initialize in your Application startup.
public static Initialize ( string applicationId, string dotnetKey ) : void
applicationId string The Application ID provided in the Parse dashboard. ///
dotnetKey string The .NET API Key provided in the Parse dashboard. ///
return void