Class CommandInfo
This class describes a registered command.
Inheritance
System.Object
CommandInfo
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Dalamud.Game.Command
Assembly: Dalamud.dll
Syntax
public sealed class CommandInfo
Constructors
| Improve this Doc View SourceCommandInfo(CommandInfo.HandlerDelegate)
Create a new CommandInfo with the provided handler.
Declaration
public CommandInfo(CommandInfo.HandlerDelegate handler)
Parameters
| Type | Name | Description |
|---|---|---|
| CommandInfo.HandlerDelegate | handler |
Properties
| Improve this Doc View SourceHandler
A CommandInfo.HandlerDelegate which will be called when the command is dispatched.
Declaration
public CommandInfo.HandlerDelegate Handler { get; }
Property Value
| Type | Description |
|---|---|
| CommandInfo.HandlerDelegate |
HelpMessage
The help message for this command.
Declaration
public string HelpMessage { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
ShowInHelp
If this command should be shown in the help output.
Declaration
public bool ShowInHelp { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |