Table of Contents

Class RequirePermissionsAttribute

Namespace
DSharpPlus.CommandsNext.Attributes
Assembly
DSharpPlus.CommandsNext.dll

Defines that usage of this command is restricted to members with specified permissions. This check also verifies that the bot has the same permissions.

[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public sealed class RequirePermissionsAttribute : CheckBaseAttribute
Inheritance
RequirePermissionsAttribute

Constructors

RequirePermissionsAttribute(DiscordPermissions, bool)

Defines that usage of this command is restricted to members with specified permissions. This check also verifies that the bot has the same permissions.

Properties

IgnoreDms

Gets this check's behaviour in DMs. True means the check will always pass in DMs, whereas false means that it will always fail.

Permissions

Gets the permissions required by this attribute.

Methods

ExecuteCheckAsync(CommandContext, bool)

Asynchronously checks whether this command can be executed within given context.