Interface IChatMessageMention
Represents a mention in a chatMessage entity. The mention can be to a user, team, bot, or channel.
Inherited Members
Namespace: PnP.Core.Model.Me
Assembly: PnP.Core.dll
Syntax
public interface IChatMessageMention : IDataModel<IChatMessageMention>, IDataModelParent, IDataModelWithContext, ISupportModules<IChatMessageMention>
Properties
Id
Index of an entity being mentioned in the specified chatMessage.
Declaration
int Id { get; set; }
Property Value
System.Int32
|
Mentioned
The entity (user, application, team, or channel) that was mentioned. If it was a channel or team that was @mentioned, the identitySet contains a conversation property giving the ID of the team/channel, and a conversationIdentityType property that represents either the team or channel.
Declaration
IChatIdentitySet Mentioned { get; }
Property Value
IChatIdentitySet
|
MentionText
String used to represent the mention. For example, a user's display name, a team name.
Declaration
string MentionText { get; set; }
Property Value
System.String
|