8 references to FullSwitchIndicator
dotnet-svcutil-lib (8)
CommandLineParser.cs (6)
38
if (name.StartsWith(
FullSwitchIndicator
))
40
this.Name = name.Substring(
FullSwitchIndicator
.Length);
85
bool enforceSwitchType = other.StartsWith(
FullSwitchIndicator
) || other.StartsWith(AbbreviationSwitchIndicator);
89
if (other.StartsWith(
FullSwitchIndicator
))
92
otherName = other.Substring(
FullSwitchIndicator
.Length).ToLowerInvariant();
208
return !(arg.StartsWith(CommandSwitch.
FullSwitchIndicator
) || arg.StartsWith(CommandSwitch.AbbreviationSwitchIndicator));
HelpGenerator.cs (2)
117
_name = String.Format(CultureInfo.InvariantCulture, "{0}{1}", CommandSwitch.
FullSwitchIndicator
, option),
127
_name = String.Format(CultureInfo.InvariantCulture, "{0}{1} {2}", CommandSwitch.
FullSwitchIndicator
, option, optionUse),