Share via


ActionExecuteHandler Delegate

Definition

Function for handling Adaptive Card Action.Execute events.

public delegate System.Threading.Tasks.Task<Microsoft.Agents.Core.Models.AdaptiveCardInvokeResponse> ActionExecuteHandler(ITurnContext turnContext, ITurnState turnState, object data, CancellationToken cancellationToken);
type ActionExecuteHandler = delegate of ITurnContext * ITurnState * obj * CancellationToken -> Task<AdaptiveCardInvokeResponse>
Public Delegate Function ActionExecuteHandler(turnContext As ITurnContext, turnState As ITurnState, data As Object, cancellationToken As CancellationToken) As Task(Of AdaptiveCardInvokeResponse) 

Parameters

turnContext
ITurnContext

A strongly-typed context object for this turn.

turnState
ITurnState

The turn state object that stores arbitrary data for this turn.

data
Object

The data associated with the action.

cancellationToken
CancellationToken

A cancellation token that can be used by other objects or threads to receive notice of cancellation.

Return Value

An instance of AdaptiveCardInvokeResponse, which can be created using AdaptiveCardInvokeResponseFactory.

Applies to