CommandInfoAliases Property

Gets the alternative names of this command.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public IEnumerable<string> Aliases { get; }

Property Value

IEnumerableString
A list of aliases.

Remarks

Aliases for a command are specified by using the AliasAttribute on a class implementing the ICommand interface.

See Also