WebAuthenticator.AuthenticateAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
AuthenticateAsync(WebAuthenticatorOptions) |
流覽至指定的 URL 並等候回呼/重新導向至 callbackUrl 配置,以開始驗證流程。起始 URL 和 callbackUrl 是在 webAuthenticatorOptions 中指定。 |
AuthenticateAsync(Uri, Uri) |
流覽至指定的 URL 並等候回呼/重新導向至 callbackUrl 配置,以開始驗證流程。 |
AuthenticateAsync(WebAuthenticatorOptions)
流覽至指定的 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)
流覽至指定的 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 剖析的結果。