WebAuthenticatorExtensions.AuthenticateAsync 方法

定义

通过导航到指定的 URL 并等待回调/重定向到 callbackUrl 方案,开始身份验证流。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<Microsoft::Maui::Authentication::WebAuthenticatorResult ^> ^ AuthenticateAsync(Microsoft::Maui::Authentication::IWebAuthenticator ^ webAuthenticator, Uri ^ url, Uri ^ callbackUrl);
public static System.Threading.Tasks.Task<Microsoft.Maui.Authentication.WebAuthenticatorResult> AuthenticateAsync (this Microsoft.Maui.Authentication.IWebAuthenticator webAuthenticator, Uri url, Uri callbackUrl);
static member AuthenticateAsync : Microsoft.Maui.Authentication.IWebAuthenticator * Uri * Uri -> System.Threading.Tasks.Task<Microsoft.Maui.Authentication.WebAuthenticatorResult>
<Extension()>
Public Function AuthenticateAsync (webAuthenticator As IWebAuthenticator, url As Uri, callbackUrl As Uri) As Task(Of WebAuthenticatorResult)

参数

webAuthenticator
IWebAuthenticator

IWebAuthenticator要用于身份验证流的 。

url
Uri

要导航到的 URL,开始身份验证流。

callbackUrl
Uri

导航流最终将重定向到的预期回调 URL。

返回

返回从回调 URL 分析出的结果。

适用于