Wolfringo Wolfringo
Wolfringo Wolfringo
Wolfringo (c) 2020 TehGM
DocFX, DiscordFX theme.
Search Results for

    Interface ICommandOptions

    Represents options for a command. Base abstraction for CommandsOptions and CommandContextOptions

    Namespace: TehGM.Wolfringo.Commands
    Assembly: Wolfringo.Commands.dll
    Syntax
    public interface ICommandOptions

    Properties

    | Improve this Doc View Source

    CaseSensitivity

    Whether commands should behave case-sensitive by default.

    Declaration
    bool CaseSensitivity { get; }
    Property Value
    Type Description
    System.Boolean
    Remarks

    This setting can be overwritten per command using CaseSensitivityAttribute.

    See Also
    CaseSensitivityAttribute
    | Improve this Doc View Source

    Prefix

    Prefix commands need to have.

    Declaration
    string Prefix { get; }
    Property Value
    Type Description
    System.String
    Remarks

    The actual requirement for command to have a prefix is specified by RequirePrefix.

    See Also
    RequirePrefix
    | Improve this Doc View Source

    RequirePrefix

    How prefix requirement is enforced by default.

    Declaration
    PrefixRequirement RequirePrefix { get; }
    Property Value
    Type Description
    PrefixRequirement
    Remarks

    Prefix value can be set using Prefix

    See Also
    Prefix