CommandInfoAliases Property

Gets the alternative names of this command.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
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