Share via


TeamsActivityHandler.OnMessageUpdateActivityAsync Method

Definition

Invoked when an message update activity is received. MessageUpdate activities, such as the conversational logic.

protected override System.Threading.Tasks.Task OnMessageUpdateActivityAsync (Microsoft.Bot.Builder.ITurnContext<Microsoft.Bot.Schema.IMessageUpdateActivity> turnContext, System.Threading.CancellationToken cancellationToken);
override this.OnMessageUpdateActivityAsync : Microsoft.Bot.Builder.ITurnContext<Microsoft.Bot.Schema.IMessageUpdateActivity> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Protected Overrides Function OnMessageUpdateActivityAsync (turnContext As ITurnContext(Of IMessageUpdateActivity), cancellationToken As CancellationToken) As Task

Parameters

turnContext
ITurnContext<IMessageUpdateActivity>

A strongly-typed context object for this turn.

cancellationToken
CancellationToken

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

Returns

A task that represents the work queued to execute.

Remarks

In a derived class, override this method to add logic that applies to all message update activities.

Applies to