Language

TeamsAppExtensions Class

Definition

Provides AgentApplication extension methods for registering Teams-aware route handlers.

public static class TeamsAppExtensions
type TeamsAppExtensions = class
Public Module TeamsAppExtensions
Inheritance
TeamsAppExtensions

Methods

Name Description
OnTeamsActivity(AgentApplication, Regex, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams activity handler for activity types that match the supplied pattern.

OnTeamsActivity(AgentApplication, String, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams activity handler for the specified activity type.

OnTeamsConversationUpdate(AgentApplication, String, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams conversation update handler for the specified conversation update event.

OnTeamsEvent(AgentApplication, Regex, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams event handler for event names that match the supplied pattern.

OnTeamsEvent(AgentApplication, RouteSelector, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams event handler using a custom route selector.

OnTeamsEvent(AgentApplication, String, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams event handler for the specified event name.

OnTeamsFeedbackLoop(AgentApplication, TeamsFeedbackLoopHandler, UInt16, String[], Boolean)

Registers a Teams feedback loop handler.

OnTeamsHandoff(AgentApplication, TeamsHandoffHandler, UInt16, String[], Boolean)

Registers a Teams handoff handler.

OnTeamsMessage(AgentApplication, Regex, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams message handler for message text that matches the supplied pattern.

OnTeamsMessage(AgentApplication, String, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams message handler for the specified message text.

OnTeamsMessageReactionsAdded(AgentApplication, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams handler for added message reactions.

OnTeamsMessageReactionsRemoved(AgentApplication, TeamsRouteHandler, UInt16, String[], Boolean)

Registers a Teams handler for removed message reactions.

Applies to