CommandInfoAliases Property

Gets the alternative names of this command.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public abstract 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