Class ChatMessageFormatting.GroupLinkData
Represents position in text and related group ID for a group link.
Inheritance
System.Object
ChatMessageFormatting.GroupLinkData
Namespace: TehGM.Wolfringo.Messages
Assembly: Wolfringo.Core.dll
Syntax
public class GroupLinkData
Constructors
| Improve this Doc View SourceGroupLinkData(UInt32, UInt32, UInt32)
Creates a new instance of group link metadata.
Declaration
public GroupLinkData(uint start, uint end, uint groupID)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | start | Where the link begins in the text. |
System.UInt32 | end | Where the link ends in the text. |
System.UInt32 | groupID | ID of the linked group. |
Properties
| Improve this Doc View SourceEnd
Where the link ends in the text.
Declaration
[JsonProperty("end")]
public uint End { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |
GroupID
ID of the linked group.
Declaration
[JsonProperty("groupId")]
public uint GroupID { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |
Start
Where the link begins in the text.
Declaration
[JsonProperty("start")]
public uint Start { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |