CommandInfo Structure

Provides information about a subcommand.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public struct CommandInfo
Inheritance
Object    ValueType    CommandInfo

Constructors

CommandInfo Initializes a new instance of the CommandInfo structure.

Properties

Aliases Gets the alternative names of this command.
CommandType Gets the type that implements the command.
Description Gets the description of the command.
IsHidden Gets or sets a value that indicates whether the command is hidden from the usage help.
Name Gets the name of the command.
UseCustomArgumentParsing Gets a value that indicates if the command uses custom parsing.

Methods

CreateInstance Creates an instance of the command type.
CreateInstanceWithResult Creates an instance of the command type.
CreateParser Creates a CommandLineParser instance that can be used to instantiate
EqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
GetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
GetTypeGets the Type of the current instance.
(Inherited from Object)
IsCommand Returns a value indicating if the specified type is a subcommand.
MatchesName Checks whether the command's name or aliases match the specified name.
ToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)
TryCreate Creates an instance of the CommandInfo structure only if commandType represents a command type.

See Also