Share via


IWebAuthenticator.AuthenticateAsync(WebAuthenticatorOptions) Method

Definition

Begin an authentication flow by navigating to the specified URL and waiting for a callback/redirect to the callback URL scheme.

public:
 System::Threading::Tasks::Task<Microsoft::Maui::Authentication::WebAuthenticatorResult ^> ^ AuthenticateAsync(Microsoft::Maui::Authentication::WebAuthenticatorOptions ^ webAuthenticatorOptions);
public System.Threading.Tasks.Task<Microsoft.Maui.Authentication.WebAuthenticatorResult> AuthenticateAsync (Microsoft.Maui.Authentication.WebAuthenticatorOptions webAuthenticatorOptions);
abstract member AuthenticateAsync : Microsoft.Maui.Authentication.WebAuthenticatorOptions -> System.Threading.Tasks.Task<Microsoft.Maui.Authentication.WebAuthenticatorResult>
Public Function AuthenticateAsync (webAuthenticatorOptions As WebAuthenticatorOptions) As Task(Of WebAuthenticatorResult)

Parameters

webAuthenticatorOptions
WebAuthenticatorOptions

A WebAuthenticatorOptions instance containing additional configuration for this authentication call.

Returns

A WebAuthenticatorResult object with the results of this operation.

Exceptions

Thrown when the user canceled the authentication flow.

Windows: Thrown when a HTTP Request error occured.

Windows: Thrown when a unexpected HTTP response was received.

iOS/macOS: Thrown when iOS version is less than 13 is used or macOS less than 13.1 is used.

Windows: Thrown when the callback custom URL scheme is not registered in the AppxManifest.xml file.

Android: Thrown when the no IntentFilter has been created for the callback URL.

Applies to