共用方式為


WebAuthenticator.AuthenticateAsync 方法

定義

多載

AuthenticateAsync(WebAuthenticatorOptions)

流覽至指定的 URL 並等候回呼/重新導向至 callbackUrl 配置,以開始驗證流程。起始 URL 和 callbackUrl 是在 webAuthenticatorOptions 中指定。

AuthenticateAsync(Uri, Uri)

流覽至指定的 URL 並等候回呼/重新導向至 callbackUrl 配置,以開始驗證流程。

AuthenticateAsync(WebAuthenticatorOptions)

來源:
WebAuthenticator.shared.cs
來源:
WebAuthenticator.shared.cs

流覽至指定的 URL 並等候回呼/重新導向至 callbackUrl 配置,以開始驗證流程。起始 URL 和 callbackUrl 是在 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)

參數

webAuthenticatorOptions
WebAuthenticatorOptions

設定驗證要求的選項。

傳回

傳回從回呼 URL 剖析的結果。

適用於

AuthenticateAsync(Uri, Uri)

來源:
WebAuthenticator.shared.cs
來源:
WebAuthenticator.shared.cs

流覽至指定的 URL 並等候回呼/重新導向至 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)

參數

url
Uri

要流覽至的 URL,開始驗證流程。

callbackUrl
Uri

流覽流程最終會重新導向至的預期回呼 URL。

傳回

傳回從回呼 URL 剖析的結果。

適用於