Table of Contents

Enum TagHandling

Namespace
Kook
Assembly
Kook.Net.Core.dll

Specifies the handling type the tag should use.

public enum TagHandling

Fields

FullName = 4

Resolves to username with identify number value (e.g. (met)2810246202(met) -> @Someone#1234).

FullNameNoPrefix = 5

Resolves to username with identify number value without mention prefix (e.g. (met)2810246202(met) -> Someone#1234).

Ignore = 0

Tag handling is ignored. (e.g. (met)2810246202(met) -> (met)2810246202(met))

Name = 2

Resolves to username (e.g. (met)2810246202(met) -> @Someone).

NameNoPrefix = 3

Resolves to username without mention prefix (e.g. (met)2810246202(met) -> Someone).

Remove = 1

Removes the tag entirely.

Sanitize = 6

Sanitizes the tag. (e.g. (met)2810246202(met) -> (met)2810246202(met) (an nbsp is inserted before the key)).

See Also