public string Token { get; }
Public ReadOnly Property Token As String
Get
Dim instance As UnknownArgumentEventArgs
Dim value As String
value = instance.Token
public:
property String^ Token {
String^ get ();
}
For an unknown named argument, the token includes the prefix, and the value if one was present using a non-whitespace separator. For example, "-Name:Value" or "--name".
If the unknown argument was part of a combined short switch argument when using ParsingModeLongShort, the Token property will contain all the switch names, while the Name property only contains the name of the unknown switch. For example, the token could be "-xyz" while the name is "y".
For an unknown positional argument value, the Token property is equal to the Value property.