Enum TagHandling
- Namespace
- Discord
- Assembly
- Discord.Net.Core.dll
Specifies the handling type the tag should use.
public enum TagHandling
Fields
FullName = 4
Resolves to username with discriminator value. (e.g. <@53905483156684800> -> @Voltana#8252).
FullNameNoPrefix = 5
Resolves to username with discriminator value without mention prefix. (e.g. <@53905483156684800> -> Voltana#8252).
Ignore = 0
Tag handling is ignored (e.g. <@53905483156684800> -> <@53905483156684800>).
Name = 2
Resolves to username (e.g. <@53905483156684800> -> @Voltana).
NameNoPrefix = 3
Resolves to username without mention prefix (e.g. <@53905483156684800> -> Voltana).
Remove = 1
Removes the tag entirely.
Sanitize = 6
Sanitizes the tag (e.g. <@53905483156684800> -> <@53905483156684800> (w/ nbsp)).