C# Class Parse.ParseClient

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

Private Properties

Свойство Type Description
BuildQueryString string
DecodeQueryString string>.IDictionary
DeserializeJsonString object>.IDictionary
GetParseType System.Type
ParseClient Parse.Internal
SerializeJsonString string

Méthodes publiques

Méthode 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

Méthode 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 méthode

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. ///
Résultat void

Initialize() public static méthode

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. ///
Résultat void