Class ChatMessageFormatting
Formatting metadata for outgoing chat messages.
Inheritance
System.Object
ChatMessageFormatting
Namespace: TehGM.Wolfringo.Messages
Assembly: Wolfringo.Core.dll
Syntax
public class ChatMessageFormatting
Constructors
| Improve this Doc View SourceChatMessageFormatting(IEnumerable<ChatMessageFormatting.GroupLinkData>, IEnumerable<ChatMessageFormatting.LinkData>)
Creates a new instance of the formatting metadata.
Declaration
public ChatMessageFormatting(IEnumerable<ChatMessageFormatting.GroupLinkData> groupLinks, IEnumerable<ChatMessageFormatting.LinkData> links)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<ChatMessageFormatting.GroupLinkData> | groupLinks | Group links present in the text. |
System.Collections.Generic.IEnumerable<ChatMessageFormatting.LinkData> | links | Web links present in the text. |
Properties
| Improve this Doc View SourceGroupLinks
Group links present in the text.
Declaration
[JsonProperty("groupLinks", DefaultValueHandling = DefaultValueHandling.Ignore, NullValueHandling = NullValueHandling.Ignore)]
public IEnumerable<ChatMessageFormatting.GroupLinkData> GroupLinks { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<ChatMessageFormatting.GroupLinkData> |
Links
Web links present in the text.
Declaration
[JsonProperty("links", DefaultValueHandling = DefaultValueHandling.Ignore, NullValueHandling = NullValueHandling.Ignore)]
public IEnumerable<ChatMessageFormatting.LinkData> Links { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<ChatMessageFormatting.LinkData> |