15 instantiations of CommandSwitch
ComSvcConfig (15)
Options.cs (15)
181new CommandSwitch(Cmd.Application, Abbr.Application, SwitchType.SingletonValue), 182new CommandSwitch(Cmd.Help, Abbr.Help, SwitchType.Flag), 183new CommandSwitch(Cmd.Hosting, Abbr.Hosting, SwitchType.SingletonValue), 184new CommandSwitch(Cmd.Contract, Abbr.Contract, SwitchType.SingletonValue), 185new CommandSwitch(Cmd.Mode, Abbr.Mode, SwitchType.SingletonValue), 186new CommandSwitch(Cmd.NoLogo, Abbr.NoLogo, SwitchType.Flag), 187new CommandSwitch(Cmd.Verbose, Abbr.Verbose, SwitchType.Flag), 188new CommandSwitch(Cmd.WebDirectory, Abbr.WebDirectory, SwitchType.SingletonValue), 189new CommandSwitch(Cmd.WebServer, Abbr.WebServer, SwitchType.SingletonValue), 190new CommandSwitch(Cmd.ID, Abbr.ID, SwitchType.Flag), 191new CommandSwitch(Cmd.MetaData, Abbr.MetaData, SwitchType.Flag), 192new CommandSwitch(Cmd.Install, Abbr.Install, SwitchType.Flag), 193new CommandSwitch(Cmd.Uninstall, Abbr.Uninstall, SwitchType.Flag), 194new CommandSwitch(Cmd.List, Abbr.List, SwitchType.Flag), 195new CommandSwitch(Cmd.AllowReferences, Abbr.AllowReferences, SwitchType.Flag)
8 references to CommandSwitch
ComSvcConfig (8)
Options.cs (2)
180static CommandSwitch[] switches = new CommandSwitch[] {
parent\svcutil\CommandLineParser.cs (6)
75internal static CommandSwitch FindSwitch(string name, CommandSwitch[] switches) 77foreach (CommandSwitch cs in switches) 154internal static ArgumentDictionary ParseCommand(string[] cmd, CommandSwitch[] switches) 159CommandSwitch argSwitch; //switch corresponding to that argument 202argSwitch = CommandSwitch.FindSwitch(arg.ToLower(CultureInfo.InvariantCulture), switches);