Condividi tramite


TestAdapter.GetUserTokenAsync Metodo

Definizione

Overload

GetUserTokenAsync(ITurnContext, AppCredentials, String, String, CancellationToken)

Tenta di recuperare il token per un utente che si trova in un flusso di accesso, usando AppCredentials personalizzato.

GetUserTokenAsync(ITurnContext, String, String, CancellationToken)

Tenta di recuperare il token per un utente che si trova in un flusso di accesso, usando le credenziali app del bot.

GetUserTokenAsync(ITurnContext, AppCredentials, String, String, CancellationToken)

Tenta di recuperare il token per un utente che si trova in un flusso di accesso, usando AppCredentials personalizzato.

public virtual System.Threading.Tasks.Task<Microsoft.Bot.Schema.TokenResponse> GetUserTokenAsync (Microsoft.Bot.Builder.ITurnContext turnContext, Microsoft.Bot.Connector.Authentication.AppCredentials oAuthAppCredentials, string connectionName, string magicCode, System.Threading.CancellationToken cancellationToken);
abstract member GetUserTokenAsync : Microsoft.Bot.Builder.ITurnContext * Microsoft.Bot.Connector.Authentication.AppCredentials * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Schema.TokenResponse>
override this.GetUserTokenAsync : Microsoft.Bot.Builder.ITurnContext * Microsoft.Bot.Connector.Authentication.AppCredentials * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Schema.TokenResponse>
Public Overridable Function GetUserTokenAsync (turnContext As ITurnContext, oAuthAppCredentials As AppCredentials, connectionName As String, magicCode As String, cancellationToken As CancellationToken) As Task(Of TokenResponse)

Parametri

turnContext
ITurnContext

Contesto per il turno corrente della conversazione con l'utente.

oAuthAppCredentials
AppCredentials

AppCredentials per OAuth.

connectionName
String

Nome della connessione di autenticazione da usare.

magicCode
String

(Facoltativo) Codice immesso facoltativo dall'utente da convalidare.

cancellationToken
CancellationToken

Token di annullamento.

Restituisce

Risposta del token o Null se il token non è stato trovato.

Implementazioni

Si applica a

GetUserTokenAsync(ITurnContext, String, String, CancellationToken)

Tenta di recuperare il token per un utente che si trova in un flusso di accesso, usando le credenziali app del bot.

public virtual System.Threading.Tasks.Task<Microsoft.Bot.Schema.TokenResponse> GetUserTokenAsync (Microsoft.Bot.Builder.ITurnContext turnContext, string connectionName, string magicCode, System.Threading.CancellationToken cancellationToken);
abstract member GetUserTokenAsync : Microsoft.Bot.Builder.ITurnContext * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Schema.TokenResponse>
override this.GetUserTokenAsync : Microsoft.Bot.Builder.ITurnContext * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Schema.TokenResponse>
Public Overridable Function GetUserTokenAsync (turnContext As ITurnContext, connectionName As String, magicCode As String, cancellationToken As CancellationToken) As Task(Of TokenResponse)

Parametri

turnContext
ITurnContext

Contesto per il turno corrente della conversazione con l'utente.

connectionName
String

Nome della connessione di autenticazione da usare.

magicCode
String

(Facoltativo) codice immesso dall'utente per la convalida.

cancellationToken
CancellationToken

Token di annullamento.

Restituisce

Risposta del token o Null se il token non è stato trovato.

Implementazioni

Si applica a