Class SocketMessageComponentData
Inheritance
SocketMessageComponentData
Assembly: Discord.Net.WebSocket.dll
Syntax
public class SocketMessageComponentData : object, IComponentInteractionData, IDiscordInteractionData
Properties
|
Improve this Doc
View Source
Channels
Gets the channels(s) of a ChannelSelect interaction response. null if select type is different.
Declaration
public IReadOnlyCollection<SocketChannel> Channels { get; }
Property Value
|
Improve this Doc
View Source
CustomId
Declaration
public string CustomId { get; }
Property Value
|
Improve this Doc
View Source
Members
Declaration
public IReadOnlyCollection<SocketGuildUser> Members { get; }
Property Value
|
Improve this Doc
View Source
Roles
Declaration
public IReadOnlyCollection<SocketRole> Roles { get; }
Property Value
|
Improve this Doc
View Source
Type
Gets the type of the component clicked.
Declaration
public ComponentType Type { get; }
Property Value
|
Improve this Doc
View Source
Users
Declaration
public IReadOnlyCollection<IUser> Users { get; }
Property Value
Type |
Description |
IReadOnlyCollection<IUser> |
|
|
Improve this Doc
View Source
Value
Declaration
public string Value { get; }
Property Value
|
Improve this Doc
View Source
Values
Declaration
public IReadOnlyCollection<string> Values { get; }
Property Value
Type |
Description |
IReadOnlyCollection<String> |
|
Implements