Table of Contents

Interface IForumTag

Namespace
Discord
Assembly
Discord.Net.Core.dll

Represents a Discord forum tag

public interface IForumTag

Properties

Emoji

Gets the emoji of the tag or null if none is set.

IEmote? Emoji { get; }

Property Value

IEmote

Remarks

If the emoji is Emote only the Id will be populated. Use GetEmoteAsync(ulong, RequestOptions) to get the emoji.

Id

Gets the Id of the tag.

ulong? Id { get; }

Property Value

ulong?

Remarks

This property may be null if the object is ForumTagProperties.

IsModerated

Gets whether this tag can only be added to or removed from threads by a member with the ManageThreads permission

bool IsModerated { get; }

Property Value

bool

Name

Gets the name of the tag.

string Name { get; }

Property Value

string