TestAdapter.GetAadTokensAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetAadTokensAsync(ITurnContext, String, String[], String, CancellationToken) |
使用 Bot 的 AppCredentials 傳回資源 URL 的 TokenResponses 字典。 |
GetAadTokensAsync(ITurnContext, AppCredentials, String, String[], String, CancellationToken) |
使用自訂的 AppCredentials 傳回資源 URL 的 TokenResponses 字典。 |
GetAadTokensAsync(ITurnContext, String, String[], String, CancellationToken)
使用 Bot 的 AppCredentials 傳回資源 URL 的 TokenResponses 字典。
public virtual System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string,Microsoft.Bot.Schema.TokenResponse>> GetAadTokensAsync (Microsoft.Bot.Builder.ITurnContext context, string connectionName, string[] resourceUrls, string userId = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAadTokensAsync : Microsoft.Bot.Builder.ITurnContext * string * string[] * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Microsoft.Bot.Schema.TokenResponse>>
override this.GetAadTokensAsync : Microsoft.Bot.Builder.ITurnContext * string * string[] * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Microsoft.Bot.Schema.TokenResponse>>
Public Overridable Function GetAadTokensAsync (context As ITurnContext, connectionName As String, resourceUrls As String(), Optional userId As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Dictionary(Of String, TokenResponse))
參數
- context
- ITurnContext
TurnCoNtext。
- connectionName
- String
connectionName。
- resourceUrls
- String[]
AAD 資源 URL 的清單。
- userId
- String
使用者識別碼。
- cancellationToken
- CancellationToken
cancellationToken。
傳回
每個資源 URL 的 TokenResponses 字典。
實作
適用於
GetAadTokensAsync(ITurnContext, AppCredentials, String, String[], String, CancellationToken)
使用自訂的 AppCredentials 傳回資源 URL 的 TokenResponses 字典。
public virtual System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string,Microsoft.Bot.Schema.TokenResponse>> GetAadTokensAsync (Microsoft.Bot.Builder.ITurnContext context, Microsoft.Bot.Connector.Authentication.AppCredentials oAuthAppCredentials, string connectionName, string[] resourceUrls, string userId = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAadTokensAsync : Microsoft.Bot.Builder.ITurnContext * Microsoft.Bot.Connector.Authentication.AppCredentials * string * string[] * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Microsoft.Bot.Schema.TokenResponse>>
override this.GetAadTokensAsync : Microsoft.Bot.Builder.ITurnContext * Microsoft.Bot.Connector.Authentication.AppCredentials * string * string[] * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Microsoft.Bot.Schema.TokenResponse>>
Public Overridable Function GetAadTokensAsync (context As ITurnContext, oAuthAppCredentials As AppCredentials, connectionName As String, resourceUrls As String(), Optional userId As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Dictionary(Of String, TokenResponse))
參數
- context
- ITurnContext
TurnCoNtext。
- oAuthAppCredentials
- AppCredentials
適用于 OAuth 的 AppCredentials。
- connectionName
- String
connectionName。
- resourceUrls
- String[]
AAD 資源 URL 的清單。
- userId
- String
使用者識別碼。
- cancellationToken
- CancellationToken
cancellationToken。
傳回
每個資源 URL 的 TokenResponses 字典。