Class ChatMessageFormatting.LinkData
Represents position in text and URL for a link.
Inheritance
System.Object
ChatMessageFormatting.LinkData
Namespace: TehGM.Wolfringo.Messages
Assembly: Wolfringo.Core.dll
Syntax
public class LinkData
Constructors
| Improve this Doc View SourceLinkData(UInt32, UInt32, String)
Creates a new instance of group link metadata.
Declaration
public LinkData(uint start, uint end, string url)
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.String | url | The URL value. |
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 |
Start
Where the link begins in the text.
Declaration
[JsonProperty("start")]
public uint Start { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |
URL
The URL value.
Declaration
[JsonProperty("url")]
public string URL { get; }
Property Value
Type | Description |
---|---|
System.String |