CommandLineArgumentUsedArgumentName Property |
Gets the name or alias that was used on the command line to specify this argument.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic string UsedArgumentName { get; }
Public ReadOnly Property UsedArgumentName As String
Get
Dim instance As CommandLineArgument
Dim value As String
value = instance.UsedArgumentName
public:
property String^ UsedArgumentName {
String^ get ();
}
Property Value
Type:
String
The name or alias that was used on the command line to specify this argument, or
if this argument was specified by position or not specified.
Remarks
If the argument names are case-insensitive, the value of this property uses the casing as specified on the command line, not the original casing of the argument name or alias.
See Also