TestAdapter.GetAadTokensAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
GetAadTokensAsync(ITurnContext, String, String[], String, CancellationToken) |
Restituisce un dizionario di TokenResponses per gli URL delle risorse usando appCredentials del bot. |
GetAadTokensAsync(ITurnContext, AppCredentials, String, String[], String, CancellationToken) |
Restituisce un dizionario di TokenResponses per gli URL delle risorse usando AppCredentials personalizzati. |
GetAadTokensAsync(ITurnContext, String, String[], String, CancellationToken)
Restituisce un dizionario di TokenResponses per gli URL delle risorse usando appCredentials del bot.
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))
Parametri
- context
- ITurnContext
The TurnContext.
- connectionName
- String
ConnectionName.
- resourceUrls
- String[]
Elenco degli URL delle risorse AAD.
- userId
- String
L'ID utente.
- cancellationToken
- CancellationToken
AnnullamentoToken.
Restituisce
Dizionario di TokenResponses per ogni URL di risorsa.
Implementazioni
Si applica a
GetAadTokensAsync(ITurnContext, AppCredentials, String, String[], String, CancellationToken)
Restituisce un dizionario di TokenResponses per gli URL delle risorse usando AppCredentials personalizzati.
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))
Parametri
- context
- ITurnContext
The TurnContext.
- oAuthAppCredentials
- AppCredentials
AppCredentials for OAuth.
- connectionName
- String
ConnectionName.
- resourceUrls
- String[]
Elenco degli URL delle risorse AAD.
- userId
- String
L'ID utente.
- cancellationToken
- CancellationToken
AnnullamentoToken.
Restituisce
Dizionario di TokenResponses per ogni URL di risorsa.