Skip to main content

Interface IEmbed

Represents a Discord embed object.

Assembly: Discord.Net.Core.dll​
View Source​
Declaration
public interface IEmbed

Properties​

Url​

Gets the title URL of this embed.

View Source​
Declaration
string Url { get; }

Title​

Gets the title of this embed.

View Source​
Declaration
string Title { get; }

Description​

Gets the description of this embed.

View Source​
Declaration
string Description { get; }

Type​

Gets the type of this embed.

View Source​
Declaration
EmbedType Type { get; }

Timestamp​

Gets the timestamp of this embed.

View Source​
Declaration
DateTimeOffset? Timestamp { get; }

Color​

Gets the color of this embed.

View Source​
Declaration
Color? Color { get; }

Image​

Gets the image of this embed.

View Source​
Declaration
EmbedImage? Image { get; }

Video​

Gets the video of this embed.

View Source​
Declaration
EmbedVideo? Video { get; }

Author​

Gets the author field of this embed.

View Source​
Declaration
EmbedAuthor? Author { get; }

Gets the footer field of this embed.

View Source​
Declaration
EmbedFooter? Footer { get; }

Provider​

Gets the provider of this embed.

View Source​
Declaration
EmbedProvider? Provider { get; }

Thumbnail​

Gets the thumbnail featured in this embed.

View Source​
Declaration
EmbedThumbnail? Thumbnail { get; }

Fields​

Gets the fields of the embed.

View Source​
Declaration
ImmutableArray<EmbedField> Fields { get; }

Extension Methods​