Skip to main content

Class CommandInfo

This class describes a registered command.

Assembly: Dalamud.dll
View Source
Declaration
public sealed class CommandInfo : IReadOnlyCommandInfo

Implements:
Dalamud.Game.Command.IReadOnlyCommandInfo

Properties

Handler

Gets a Dalamud.Game.Command.IReadOnlyCommandInfo.HandlerDelegate which will be called when the command is dispatched.

View Source
Declaration
public IReadOnlyCommandInfo.HandlerDelegate Handler { get; }

HelpMessage

Gets the help message for this command.

View Source
Declaration
public string HelpMessage { get; set; }

ShowInHelp

Gets a value indicating whether if this command should be shown in the help output.

View Source
Declaration
public bool ShowInHelp { get; set; }

Implements