Skip to main content

Class GuildEmote

An image-based emote that is attached to a guild.

Assembly: Discord.Net.Core.dll​
View Source​
Declaration
public class GuildEmote : Emote, IEmote, ISnowflakeEntity, IEntity<ulong>

Properties​

IsManaged​

Gets whether this emoji is managed by an integration.

View Source​
Declaration
public bool IsManaged { get; }

RequireColons​

Gets whether this emoji must be wrapped in colons.

View Source​
Declaration
public bool RequireColons { get; }

RoleIds​

Gets the roles that are allowed to use this emoji.

View Source​
Declaration
public IReadOnlyList<ulong> RoleIds { get; }

CreatorId​

Gets the user ID associated with the creation of this emoji.

View Source​
Declaration
public ulong? CreatorId { get; }

Methods​

ToString()​

Gets the raw representation of the emote.

View Source​
Declaration
public override string ToString()
Returns​

System.String: A string representing the raw presentation of the emote (e.g. &lt;:thonkang:282745590985523200&gt;).

Implements​