Class SocketUnknownSticker
Represents an unknown sticker received over the gateway.
Inheritance
SocketUnknownSticker
Assembly: Discord.Net.WebSocket.dll
Syntax
public class SocketUnknownSticker : SocketSticker, IEntity<ulong>, ISticker, IStickerItem
Properties
|
Improve this Doc
View Source
Description
Declaration
public override string Description { get; }
Property Value
Overrides
|
Improve this Doc
View Source
IsAvailable
Declaration
public override bool? IsAvailable { get; }
Property Value
Overrides
|
Improve this Doc
View Source
PackId
Declaration
public override ulong PackId { get; }
Property Value
Overrides
|
Improve this Doc
View Source
SortOrder
Declaration
public override int? SortOrder { get; }
Property Value
Overrides
|
Improve this Doc
View Source
Declaration
public override IReadOnlyCollection<string> Tags { get; }
Property Value
Type |
Description |
IReadOnlyCollection<String> |
|
Overrides
|
Improve this Doc
View Source
Type
Declaration
public StickerType? Type { get; }
Property Value
Methods
|
Improve this Doc
View Source
ResolveAsync(CacheMode, RequestOptions)
Attempts to try to find the sticker.
Declaration
public Task<SocketSticker> ResolveAsync(CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null)
Parameters
Returns
Type |
Description |
Task<SocketSticker> |
The sticker representing this unknown stickers Id, if none is found then null.
|
Implements