Method | Description | |
---|---|---|
GetPush ( this client ) : |
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 |
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 |
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
|
public static GetPush ( this client ) : |
||
client | this |
/// The |
return |
public static LoginAsync ( this client, MobileServiceAuthenticationProvider provider ) : Task |
||
client | this | /// The client. /// |
provider | MobileServiceAuthenticationProvider | /// Authentication provider to use. /// |
return | Task |
public static LoginAsync ( this client, MobileServiceAuthenticationProvider provider, string>.IDictionary |
||
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. /// |
return | Task |
public static LoginAsync ( this client, string provider ) : Task |
||
client | this | /// The client. /// |
provider | string | /// Authentication provider to use. /// |
return | Task |
public static LoginAsync ( this client, string provider, string>.IDictionary |
||
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. /// |
return | Task |
public static LoginComplete ( this client, WebAuthenticationBrokerContinuationEventArgs result ) : void | ||
client | this | /// The client. /// |
result | WebAuthenticationBrokerContinuationEventArgs | /// Result from the Web Authentication Broker /// |
return | void |