| AuthenticationClientByEmailAsync Method |
Upgrades current Application session to User session.
Namespace: Quickblox.Sdk.Modules.AuthModuleAssembly: Quickblox.Sdk.Xamarin (in Quickblox.Sdk.Xamarin.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic Task<HttpResponse<LoginResponse>> ByEmailAsync(
string email,
string password,
string provider = null,
string scope = null
)
Public Function ByEmailAsync (
email As String,
password As String,
Optional provider As String = Nothing,
Optional scope As String = Nothing
) As Task(Of HttpResponse(Of LoginResponse))
public:
Task<HttpResponse<LoginResponse^>^>^ ByEmailAsync(
String^ email,
String^ password,
String^ provider = nullptr,
String^ scope = nullptr
)
member ByEmailAsync :
email : string *
password : string *
?provider : string *
?scope : string
(* Defaults:
let _provider = defaultArg provider null
let _scope = defaultArg scope null
*)
-> Task<HttpResponse<LoginResponse>>
Parameters
- email
- Type: SystemString
User email - password
- Type: SystemString
User password - provider (Optional)
- Type: SystemString
Privider - scope (Optional)
- Type: SystemString
Scope
Return Value
Type:
TaskHttpResponseLoginResponse[Missing <returns> documentation for "M:Quickblox.Sdk.Modules.AuthModule.AuthenticationClient.ByEmailAsync(System.String,System.String,System.String,System.String)"]
See Also