Partager via


CloudAdapterBase.ProcessActivityAsync Méthode

Définition

Surcharges

ProcessActivityAsync(AuthenticateRequestResult, Activity, BotCallbackHandler, CancellationToken)

Implémentation pour le traitement d’une activité envoyée à ce bot.

ProcessActivityAsync(String, Activity, BotCallbackHandler, CancellationToken)

Implémentation pour le traitement d’une activité envoyée à ce bot.

ProcessActivityAsync(AuthenticateRequestResult, Activity, BotCallbackHandler, CancellationToken)

Implémentation pour le traitement d’une activité envoyée à ce bot.

protected System.Threading.Tasks.Task<Microsoft.Bot.Builder.InvokeResponse> ProcessActivityAsync (Microsoft.Bot.Connector.Authentication.AuthenticateRequestResult authenticateRequestResult, Microsoft.Bot.Schema.Activity activity, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
override this.ProcessActivityAsync : Microsoft.Bot.Connector.Authentication.AuthenticateRequestResult * Microsoft.Bot.Schema.Activity * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Builder.InvokeResponse>
Protected Function ProcessActivityAsync (authenticateRequestResult As AuthenticateRequestResult, activity As Activity, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task(Of InvokeResponse)

Paramètres

authenticateRequestResult
AuthenticateRequestResult

Résultats de l’authentification pour ce tour.

activity
Activity

Activity à traiter.

callback
BotCallbackHandler

Méthode à appeler pour le tour de bot résultant.

cancellationToken
CancellationToken

Jeton d'annulation.

Retours

Tâche qui représente le travail mis en file d’attente à exécuter. Contenant l’objet InvokeResponse s’il en existe un.

S’applique à

ProcessActivityAsync(String, Activity, BotCallbackHandler, CancellationToken)

Implémentation pour le traitement d’une activité envoyée à ce bot.

protected System.Threading.Tasks.Task<Microsoft.Bot.Builder.InvokeResponse> ProcessActivityAsync (string authHeader, Microsoft.Bot.Schema.Activity activity, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
override this.ProcessActivityAsync : string * Microsoft.Bot.Schema.Activity * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Builder.InvokeResponse>
Protected Function ProcessActivityAsync (authHeader As String, activity As Activity, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task(Of InvokeResponse)

Paramètres

authHeader
String

En-tête d’autorisation de la requête HTTP.

activity
Activity

Activity à traiter.

callback
BotCallbackHandler

Méthode à appeler pour le tour de bot résultant.

cancellationToken
CancellationToken

Jeton d'annulation.

Retours

Tâche qui représente le travail mis en file d’attente à exécuter. Contenant l’objet InvokeResponse s’il en existe un.

S’applique à