Class ApplicationCommandsModuleStartupFinishedEventArgs
Represents arguments for a ApplicationCommandsModuleStartupFinished event.
Inheritance
System.Object
System.EventArgs
ApplicationCommandsModuleStartupFinishedEventArgs
Namespace: DisCatSharp.ApplicationCommands.EventArgs
Assembly: DisCatSharp.ApplicationCommands.dll
Syntax
public class ApplicationCommandsModuleStartupFinishedEventArgs : DiscordEventArgs
Properties
| Improve this Doc View SourceGuildsWithoutScope
Gets a list of all guild ids missing the application commands scope.
Declaration
public IReadOnlyList<ulong> GuildsWithoutScope { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.UInt64> |
RegisteredGlobalCommands
Gets all registered global commands.
Declaration
public IReadOnlyList<DiscordApplicationCommand> RegisteredGlobalCommands { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<DiscordApplicationCommand> |
RegisteredGuildCommands
Gets all registered guild commands mapped by guild id.
Declaration
public IReadOnlyDictionary<ulong, IReadOnlyList<DiscordApplicationCommand>> RegisteredGuildCommands { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyDictionary<System.UInt64, System.Collections.Generic.IReadOnlyList<DiscordApplicationCommand>> |