Table of Contents

Interface ITag

Namespace
Kook
Assembly
Kook.Net.Core.dll

Gets a generic tag found in messages.

public interface ITag

Properties

Index

Gets position of the tag in the message.

int Index { get; }

Property Value

int

Key

Gets the key of the tag.

dynamic Key { get; }

Property Value

dynamic

Length

Gets the length of the tag.

int Length { get; }

Property Value

int

Type

Gets the type of the tag.

TagType Type { get; }

Property Value

TagType

Value

Gets the value of the tag.

object? Value { get; }

Property Value

object

See Also