GeneratedCommandInfoAliases Property

Gets the alternative names of this command.

Definition

Namespace: Ookii.CommandLine.Support
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.1.0+9df03b6173b5fc9d44dc39638758964dd7a0f4c7
C#
public override IEnumerable<string> Aliases { get; }

Property Value

IEnumerableString
A list of aliases.

Remarks

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

See Also