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 から解析された結果を返します。

適用対象