Click or drag to resize

AliasAttribute Class

Defines an alternative name for a command line argument.
Inheritance Hierarchy
SystemObject
  SystemAttribute
    Ookii.CommandLineAliasAttribute

Namespace:  Ookii.CommandLine
Assembly:  Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.4.0
Syntax
public sealed class AliasAttribute : Attribute

The AliasAttribute type exposes the following members.

Constructors
  NameDescription
Public methodAliasAttribute
Initializes a new instance of the AliasAttribute class.
Top
Properties
  NameDescription
Public propertyAlias
Gets the alternative name for the command line argument.
Public propertyTypeId
When implemented in a derived class, gets a unique identifier for this Attribute.
(Inherited from Attribute.)
Top
Methods
  NameDescription
Public methodEquals
Returns a value that indicates whether this instance is equal to a specified object.
(Inherited from Attribute.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from Attribute.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsDefaultAttribute
When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Inherited from Attribute.)
Public methodMatch
When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Inherited from Attribute.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
Note Note
To specify multiple aliases, apply this attribute multiple times.

The aliases for a command line argument can be used instead of their regular name to specify the parameter on the command line. For example, this can be used to have a shorter name for an argument (e.g. "-v" as an alternative to "-Verbose").

All regular command line argument names and aliases used by an instance of the CommandLineParser class must be unique.

By default, the command line usage help generated by WriteUsage(TextWriter, Int32, WriteUsageOptions) does not list the aliases. Either manually add them to the description, or set the IncludeAliasInDescription property to .

See Also