|
@@ -212,6 +212,16 @@ |
|
|
A URL pointing to the Spotify track. |
|
|
A URL pointing to the Spotify track. |
|
|
</returns> |
|
|
</returns> |
|
|
</member> |
|
|
</member> |
|
|
|
|
|
<member name="M:Discord.CDN.GetStickerUrl(System.UInt64,Discord.StickerFormatType)"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets a stickers url based off the id and format. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<param name="stickerId">The id of the sticker.</param> |
|
|
|
|
|
<param name="format">The format of the sticker</param> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A URL to the sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
<member name="T:Discord.Commands.ICommandContext"> |
|
|
<member name="T:Discord.Commands.ICommandContext"> |
|
|
<summary> |
|
|
<summary> |
|
|
Represents a context of a command. This may include the client, guild, channel, user, and message. |
|
|
Represents a context of a command. This may include the client, guild, channel, user, and message. |
|
@@ -3121,6 +3131,14 @@ |
|
|
A read-only collection of all custom emotes for this guild. |
|
|
A read-only collection of all custom emotes for this guild. |
|
|
</returns> |
|
|
</returns> |
|
|
</member> |
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.IGuild.Stickers"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets a collection of all custom stickers for this guild. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A read-only collection of all custom stickers for this guild. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
<member name="P:Discord.IGuild.Features"> |
|
|
<member name="P:Discord.IGuild.Features"> |
|
|
<summary> |
|
|
<summary> |
|
|
Gets a collection of all extra features added to this guild. |
|
|
Gets a collection of all extra features added to this guild. |
|
@@ -3914,6 +3932,52 @@ |
|
|
A task that represents the asynchronous removal operation. |
|
|
A task that represents the asynchronous removal operation. |
|
|
</returns> |
|
|
</returns> |
|
|
</member> |
|
|
</member> |
|
|
|
|
|
<member name="M:Discord.IGuild.CreateStickerAsync(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Discord.Image,Discord.RequestOptions)"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Creates a new sticker in this guild. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<param name="name">The name of the sticker.</param> |
|
|
|
|
|
<param name="description">The description of the sticker.</param> |
|
|
|
|
|
<param name="tags">The tags of the sticker.</param> |
|
|
|
|
|
<param name="image">The image of the new emote.</param> |
|
|
|
|
|
<param name="options">The options to be used when sending the request.</param> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A task that represents the asynchronous creation operation. The task result contains the created sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="M:Discord.IGuild.GetStickerAsync(System.UInt64,Discord.CacheMode,Discord.RequestOptions)"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets a specific sticker within this guild. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<param name="id">The id of the sticker to get.</param> |
|
|
|
|
|
<param name="mode">The <see cref="T:Discord.CacheMode" /> that determines whether the object should be fetched from cache.</param> |
|
|
|
|
|
<param name="options">The options to be used when sending the request.</param> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A task that represents the asynchronous get operation. The task result contains the sticker found with the |
|
|
|
|
|
specified <paramref name="id"/>; <see langword="null" /> if none is found. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="M:Discord.IGuild.GetStickersAsync(Discord.CacheMode,Discord.RequestOptions)"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets a collection of all stickers within this guild. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<param name="mode">The <see cref="T:Discord.CacheMode" /> that determines whether the object should be fetched from cache.</param> |
|
|
|
|
|
<param name="options">The options to be used when sending the request.</param> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A task that represents the asynchronous get operation. The task result contains a read-only collection |
|
|
|
|
|
of stickers found within the guild. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="M:Discord.IGuild.DeleteStickerAsync(Discord.ICustomSticker,Discord.RequestOptions)"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Deletes a sticker within this guild. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<param name="sticker">The sticker to delete.</param> |
|
|
|
|
|
<param name="options">The options to be used when sending the request.</param> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A task that represents the asynchronous removal operation. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
<member name="M:Discord.IGuild.GetApplicationCommandsAsync(Discord.RequestOptions)"> |
|
|
<member name="M:Discord.IGuild.GetApplicationCommandsAsync(Discord.RequestOptions)"> |
|
|
<summary> |
|
|
<summary> |
|
|
Gets this guilds slash commands commands |
|
|
Gets this guilds slash commands commands |
|
@@ -7282,7 +7346,14 @@ |
|
|
The <see cref="T:Discord.IMessageComponent"/>'s attached to this message |
|
|
The <see cref="T:Discord.IMessageComponent"/>'s attached to this message |
|
|
</summary> |
|
|
</summary> |
|
|
</member> |
|
|
</member> |
|
|
<!-- Badly formed XML comment ignored for member "P:Discord.IMessage.Stickers" --> |
|
|
|
|
|
|
|
|
<member name="P:Discord.IMessage.Stickers"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets all stickers items included in this message. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A read-only collection of sticker item objects. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
<member name="P:Discord.IMessage.Flags"> |
|
|
<member name="P:Discord.IMessage.Flags"> |
|
|
<summary> |
|
|
<summary> |
|
|
Gets the flags related to this message. |
|
|
Gets the flags related to this message. |
|
@@ -7411,75 +7482,6 @@ |
|
|
The <see cref="T:Discord.IEmote" /> used in the reaction. |
|
|
The <see cref="T:Discord.IEmote" /> used in the reaction. |
|
|
</summary> |
|
|
</summary> |
|
|
</member> |
|
|
</member> |
|
|
<member name="T:Discord.ISticker"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Represents a discord sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Id"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the ID of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A snowflake ID associated with this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.PackId"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the ID of the pack of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A snowflake ID associated with the pack of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Name"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the name of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see langword="string"/> with the name of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Description"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the description of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see langword="string"/> with the description of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Tags"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the list of tags of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A read-only list with the tags of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Asset"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the asset hash of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see langword="string"/> with the asset hash of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.PreviewAsset"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the preview asset hash of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see langword="string"/> with the preview asset hash of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.FormatType"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the format type of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see cref="T:Discord.StickerFormatType"/> with the format type of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="T:Discord.ISystemMessage"> |
|
|
<member name="T:Discord.ISystemMessage"> |
|
|
<summary> |
|
|
<summary> |
|
|
Represents a generic message sent by the system. |
|
|
Represents a generic message sent by the system. |
|
@@ -9329,6 +9331,214 @@ |
|
|
otherwise <see langword="false"/>. |
|
|
otherwise <see langword="false"/>. |
|
|
</returns> |
|
|
</returns> |
|
|
</member> |
|
|
</member> |
|
|
|
|
|
<member name="T:Discord.ICustomSticker"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Represents a custom sticker within a guild. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ICustomSticker.AuthorId"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the users id who uploaded the sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<remarks> |
|
|
|
|
|
In order to get the author id, the bot needs the MANAGE_EMOJIS_AND_STICKERS permission. |
|
|
|
|
|
</remarks> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ICustomSticker.Guild"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the guild that this custom sticker is in. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="M:Discord.ICustomSticker.ModifyAsync(System.Action{Discord.StickerProperties},Discord.RequestOptions)"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Modifies this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<remarks> |
|
|
|
|
|
This method modifies this sticker with the specified properties. To see an example of this |
|
|
|
|
|
method and what properties are available, please refer to <see cref="T:Discord.StickerProperties"/>. |
|
|
|
|
|
<br/> |
|
|
|
|
|
<br/> |
|
|
|
|
|
The bot needs the MANAGE_EMOJIS_AND_STICKERS permission within the guild in order to modify stickers. |
|
|
|
|
|
</remarks> |
|
|
|
|
|
<example> |
|
|
|
|
|
<para>The following example replaces the name of the sticker with <c>kekw</c>.</para> |
|
|
|
|
|
<code language="cs"> |
|
|
|
|
|
await sticker.ModifyAsync(x => x.Name = "kekw"); |
|
|
|
|
|
</code> |
|
|
|
|
|
</example> |
|
|
|
|
|
<param name="func">A delegate containing the properties to modify the sticker with.</param> |
|
|
|
|
|
<param name="options">The options to be used when sending the request.</param> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A task that represents the asynchronous modification operation. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="M:Discord.ICustomSticker.DeleteAsync(Discord.RequestOptions)"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Deletes the current sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<remakrs> |
|
|
|
|
|
The bot neeeds the MANAGE_EMOJIS_AND_STICKERS permission inside the guild in order to delete stickers. |
|
|
|
|
|
</remakrs> |
|
|
|
|
|
<param name="options">The options to be used when sending the request.</param> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A task that represents the asynchronous deletion operation. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="T:Discord.ISticker"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Represents a discord sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Id"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the ID of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A snowflake ID associated with this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.PackId"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the ID of the pack of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A snowflake ID associated with the pack of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Name"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the name of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see langword="string"/> with the name of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Description"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the description of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see langword="string"/> with the description of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Tags"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the list of tags of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A read-only list with the tags of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Asset"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the asset hash of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see langword="string"/> with the asset hash of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.PreviewAsset"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the preview asset hash of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see langword="string"/> with the preview asset hash of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.ISticker.Format"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the format type of this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<returns> |
|
|
|
|
|
A <see cref="T:Discord.StickerFormatType"/> with the format type of this sticker. |
|
|
|
|
|
</returns> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="M:Discord.ISticker.GetStickerUrl"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the image url for this sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="T:Discord.IStickerItem"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Represents a partial sticker item received with a message. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.IStickerItem.Id"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
The id of the sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.IStickerItem.Name"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
The name of the sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.IStickerItem.Format"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
The format of the sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="T:Discord.StickerPack`1"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Represents a discord sticker pack. |
|
|
|
|
|
</summary> |
|
|
|
|
|
<typeparam name="TSticker">The type of the stickers within the collection</typeparam> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerPack`1.Id"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the id of the sticker pack. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerPack`1.Stickers"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets a collection of the stickers in the pack. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerPack`1.Name"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the name of the sticker pack. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerPack`1.SkuId"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the id of the pack's SKU. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerPack`1.CoverStickerId"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the id of a sticker in the pack which is shown as the pack's icon. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerPack`1.Description"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the description of the sticker pack. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerPack`1.BannerAssetId"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets the id of the sticker pack's banner image |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="T:Discord.StickerProperties"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Represents a class used to modify stickers. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerProperties.Name"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets or sets the name of the sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerProperties.Description"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets or sets the description of the sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
|
|
|
<member name="P:Discord.StickerProperties.Tags"> |
|
|
|
|
|
<summary> |
|
|
|
|
|
Gets or sets the tags of the sticker. |
|
|
|
|
|
</summary> |
|
|
|
|
|
</member> |
|
|
<member name="T:Discord.ITeam"> |
|
|
<member name="T:Discord.ITeam"> |
|
|
<summary> |
|
|
<summary> |
|
|
Represents a Discord Team. |
|
|
Represents a Discord Team. |
|
|