TeamsMembersAddedRouteAttribute Class
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.
Attribute to define a route that handles conversation update activities when members are added.
[Microsoft.Agents.Builder.App.RouteHandlerType(typeof(Microsoft.Agents.Extensions.MSTeams.App.TeamsRouteHandler))]
[System.AttributeUsage(System.AttributeTargets.Method, Inherited=true)]
public class TeamsMembersAddedRouteAttribute : Attribute, Microsoft.Agents.Builder.App.IRouteAttribute
[<Microsoft.Agents.Builder.App.RouteHandlerType(typeof(Microsoft.Agents.Extensions.MSTeams.App.TeamsRouteHandler))>]
[<System.AttributeUsage(System.AttributeTargets.Method, Inherited=true)>]
type TeamsMembersAddedRouteAttribute = class
inherit Attribute
interface IRouteAttribute
Public Class TeamsMembersAddedRouteAttribute
Inherits Attribute
Implements IRouteAttribute
- Inheritance
-
TeamsMembersAddedRouteAttribute
- Attributes
- Implements
Remarks
Decorate a method with this attribute to register it as a handler for the MembersAdded event. The method must match the TeamsRouteHandler delegate signature.
[TeamsMembersAddedRoute]
public async Task OnMembersAddedAsync(ITeamsTurnContext turnContext, ITurnState turnState, CancellationToken cancellationToken)
{
foreach (ChannelAccount member in turnContext.Activity.MembersAdded)
{
if (member.Id != turnContext.Activity.Recipient.Id)
{
await turnContext.SendActivityAsync(MessageFactory.Text("Hello and Welcome!"), cancellationToken);
}
}
}
Constructors
| Name | Description |
|---|---|
| TeamsMembersAddedRouteAttribute(Boolean, UInt16, String) |
Attribute to define a route that handles conversation update activities when members are added. |
Methods
| Name | Description |
|---|---|
| AddRoute(AgentApplication, MethodInfo) | |