8 references to FullSwitchIndicator
dotnet-svcutil-lib (8)
CommandLineParser.cs (6)
38if (name.StartsWith(FullSwitchIndicator)) 40this.Name = name.Substring(FullSwitchIndicator.Length); 85bool enforceSwitchType = other.StartsWith(FullSwitchIndicator) || other.StartsWith(AbbreviationSwitchIndicator); 89if (other.StartsWith(FullSwitchIndicator)) 92otherName = other.Substring(FullSwitchIndicator.Length).ToLowerInvariant(); 208return !(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),