ITurnContext.OnSendActivities(SendActivitiesHandler) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a response handler for send activity operations.
public Microsoft.Bot.Builder.ITurnContext OnSendActivities (Microsoft.Bot.Builder.SendActivitiesHandler handler);
abstract member OnSendActivities : Microsoft.Bot.Builder.SendActivitiesHandler -> Microsoft.Bot.Builder.ITurnContext
Public Function OnSendActivities (handler As SendActivitiesHandler) As ITurnContext
Parameters
- handler
- SendActivitiesHandler
The handler to add to the context object.
Returns
The updated context object.
Remarks
When the context's SendActivityAsync(IActivity, CancellationToken) or SendActivitiesAsync(IActivity[], CancellationToken) method is called, the adapter calls the registered handlers in the order in which they were added to the context object.