public bool IsCombinedSwitchToken { get; }
Public ReadOnly Property IsCombinedSwitchToken As Boolean
Get
Dim instance As UnknownArgumentEventArgs
Dim value As Boolean
value = instance.IsCombinedSwitchToken
public:
property bool IsCombinedSwitchToken {
bool get ();
}
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".