Wolfringo Wolfringo
Wolfringo Wolfringo
Wolfringo (c) 2020 TehGM
DocFX, DiscordFX theme.
Search Results for

    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 Source

    LinkData(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 Source

    End

    Where the link ends in the text.

    Declaration
    [JsonProperty("end")]
    public uint End { get; }
    Property Value
    Type Description
    System.UInt32
    | Improve this Doc View Source

    Start

    Where the link begins in the text.

    Declaration
    [JsonProperty("start")]
    public uint Start { get; }
    Property Value
    Type Description
    System.UInt32
    | Improve this Doc View Source

    URL

    The URL value.

    Declaration
    [JsonProperty("url")]
    public string URL { get; }
    Property Value
    Type Description
    System.String