Condividi tramite


WebAuthenticator.AuthenticateAsync Metodo

Definizione

Overload

AuthenticateAsync(WebAuthenticatorOptions)

Avviare un flusso di autenticazione passando all'URL specificato e attendendo un callback/reindirizzamento allo schema callbackUrl. L'URL iniziale e il callbackUrl vengono specificati in webAuthenticatorOptions.

AuthenticateAsync(Uri, Uri)

Avviare un flusso di autenticazione passando all'URL specificato e attendendo un callback/reindirizzamento allo schema callbackUrl.

AuthenticateAsync(WebAuthenticatorOptions)

Origine:
WebAuthenticator.shared.cs
Origine:
WebAuthenticator.shared.cs

Avviare un flusso di autenticazione passando all'URL specificato e attendendo un callback/reindirizzamento allo schema callbackUrl. L'URL iniziale e il callbackUrl vengono specificati in webAuthenticatorOptions.

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

Parametri

webAuthenticatorOptions
WebAuthenticatorOptions

Opzioni per configurare la richiesta di autenticazione.

Restituisce

Restituisce un risultato analizzato dall'URL di callback.

Si applica a

AuthenticateAsync(Uri, Uri)

Origine:
WebAuthenticator.shared.cs
Origine:
WebAuthenticator.shared.cs

Avviare un flusso di autenticazione passando all'URL specificato e attendendo un callback/reindirizzamento allo schema callbackUrl.

public:
 static System::Threading::Tasks::Task<Microsoft::Maui::Authentication::WebAuthenticatorResult ^> ^ AuthenticateAsync(Uri ^ url, Uri ^ callbackUrl);
public static System.Threading.Tasks.Task<Microsoft.Maui.Authentication.WebAuthenticatorResult> AuthenticateAsync (Uri url, Uri callbackUrl);
static member AuthenticateAsync : Uri * Uri -> System.Threading.Tasks.Task<Microsoft.Maui.Authentication.WebAuthenticatorResult>
Public Shared Function AuthenticateAsync (url As Uri, callbackUrl As Uri) As Task(Of WebAuthenticatorResult)

Parametri

url
Uri

URL a cui passare, iniziando il flusso di autenticazione.

callbackUrl
Uri

URL di callback previsto a cui verrà eseguito il reindirizzamento del flusso di spostamento.

Restituisce

Restituisce un risultato analizzato dall'URL di callback.

Si applica a