6 references to AbbreviationSwitchIndicator
dotnet-svcutil-lib (6)
CommandLineParser.cs (6)
47
if (abbreviation.StartsWith(
AbbreviationSwitchIndicator
))
49
this.Abbreviation = abbreviation.Substring(
AbbreviationSwitchIndicator
.Length);
85
bool enforceSwitchType = other.StartsWith(FullSwitchIndicator) || other.StartsWith(
AbbreviationSwitchIndicator
);
94
else if (other.StartsWith(
AbbreviationSwitchIndicator
))
97
otherName = other.Substring(
AbbreviationSwitchIndicator
.Length).ToLowerInvariant();
208
return !(arg.StartsWith(CommandSwitch.FullSwitchIndicator) || arg.StartsWith(CommandSwitch.
AbbreviationSwitchIndicator
));