C# Класс Parse.ParseClient

ParseClient contains static functions that handle global configuration for the Parse library.
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
BuildQueryString string
DecodeQueryString string>.IDictionary
DeserializeJsonString object>.IDictionary
GetParseType System.Type
ParseClient Parse.Internal
SerializeJsonString string

Открытые методы

Метод Описание
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.

Приватные методы

Метод Описание
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

Описание методов

Initialize() публичный статический Метод

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. ///
Результат void

Initialize() публичный статический Метод

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. ///
Результат void