C# 클래스 Microsoft.WindowsAzure.MobileServices.MobileServiceClientExtensions

Provides extension methods on MobileServiceClient.
파일 보기 프로젝트 열기: Azure/azure-mobile-apps-net-client

공개 메소드들

메소드 설명
GetPush ( this client ) : Push

Extension method to get a Push object made from an existing MobileServiceClient.

LoginAsync ( this client, MobileServiceAuthenticationProvider provider ) : Task

Log a user into a Mobile Services application given a provider name.

LoginAsync ( this client, MobileServiceAuthenticationProvider provider, string>.IDictionary parameters ) : Task

Log a user into a Mobile Services application given a provider name.

LoginAsync ( this client, string provider ) : Task

Log a user into a Mobile Services application given a provider name.

LoginAsync ( this client, string provider, string>.IDictionary parameters ) : Task

Log a user into a Mobile Services application given a provider name.

LoginComplete ( this client, WebAuthenticationBrokerContinuationEventArgs result ) : void

Finishes the login process initiated by the LoginAsync() call, should be called from the App OnActivated event when it is triggered due to the Web Authentication Broker

메소드 상세

GetPush() 공개 정적인 메소드

Extension method to get a Push object made from an existing MobileServiceClient.
public static GetPush ( this client ) : Push
client this /// The to create with. ///
리턴 Push

LoginAsync() 공개 정적인 메소드

Log a user into a Mobile Services application given a provider name.
public static LoginAsync ( this client, MobileServiceAuthenticationProvider provider ) : Task
client this /// The client. ///
provider MobileServiceAuthenticationProvider /// Authentication provider to use. ///
리턴 Task

LoginAsync() 공개 정적인 메소드

Log a user into a Mobile Services application given a provider name.
public static LoginAsync ( this client, MobileServiceAuthenticationProvider provider, string>.IDictionary parameters ) : Task
client this /// The client. ///
provider MobileServiceAuthenticationProvider /// Authentication provider to use. ///
parameters string>.IDictionary /// Provider specific extra parameters that are sent as query string parameters to login endpoint. ///
리턴 Task

LoginAsync() 공개 정적인 메소드

Log a user into a Mobile Services application given a provider name.
public static LoginAsync ( this client, string provider ) : Task
client this /// The client. ///
provider string /// Authentication provider to use. ///
리턴 Task

LoginAsync() 공개 정적인 메소드

Log a user into a Mobile Services application given a provider name.
public static LoginAsync ( this client, string provider, string>.IDictionary parameters ) : Task
client this /// The client. ///
provider string /// Authentication provider to use. ///
parameters string>.IDictionary /// Provider specific extra parameters that are sent as query string parameters to login endpoint. ///
리턴 Task

LoginComplete() 공개 정적인 메소드

Finishes the login process initiated by the LoginAsync() call, should be called from the App OnActivated event when it is triggered due to the Web Authentication Broker
public static LoginComplete ( this client, WebAuthenticationBrokerContinuationEventArgs result ) : void
client this /// The client. ///
result WebAuthenticationBrokerContinuationEventArgs /// Result from the Web Authentication Broker ///
리턴 void