C# 클래스 Parse.ParseClient

ParseClient contains static functions that handle global configuration for the Parse library.
파일 보기 프로젝트 열기: Bernie-2016/Connect-Windows 1 사용 예제들

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