你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

TokenProvider.CreateAzureActiveDirectoryTokenProvider 方法

定义

创建 Azure Active Directory 令牌提供程序。

public static Microsoft.Azure.Relay.TokenProvider CreateAzureActiveDirectoryTokenProvider (Microsoft.Azure.Relay.TokenProvider.AuthenticationCallback authCallback, string authority, object state = default);
static member CreateAzureActiveDirectoryTokenProvider : Microsoft.Azure.Relay.TokenProvider.AuthenticationCallback * string * obj -> Microsoft.Azure.Relay.TokenProvider
Public Shared Function CreateAzureActiveDirectoryTokenProvider (authCallback As TokenProvider.AuthenticationCallback, authority As String, Optional state As Object = Nothing) As TokenProvider

参数

authCallback
TokenProvider.AuthenticationCallback

用户提供的处理程序,将调用该处理程序来获取 AAD 访问令牌字符串。

authority
String

颁发 AAD 令牌的颁发机构的地址。 例如: https://login.microsoftonline.com/{TenantId}

state
Object

要传递到回调的状态。

返回

TokenProvider用于返回 Json Web 令牌的 。

适用于