SYMBOL INDEX (215 symbols across 41 files) FILE: ManyConsole.Tests/Can_consume_variable_number_of_arguments.cs class Can_consume_variable_number_of_arguments (line 7) | public class Can_consume_variable_number_of_arguments method Expecting2CalledWith0 (line 9) | [Test] method Expecting2CalledWith1 (line 16) | [Test] method Expecting2CalledWith2 (line 23) | [Test] method Expecting2CalledWith5 (line 30) | [Test] method Expecting2To5CalledWith0 (line 37) | [Test] method Expecting2To5CalledWith1 (line 44) | [Test] method Expecting2To5CalledWith2 (line 51) | [Test] method Expecting2To5CalledWith4 (line 58) | [Test] method Expecting2To5CalledWith5 (line 65) | [Test] method Expecting2To5CalledWith6 (line 72) | [Test] class CommandWithAtLeast2Parameters (line 80) | public class CommandWithAtLeast2Parameters : ConsoleCommand method CommandWithAtLeast2Parameters (line 82) | public CommandWithAtLeast2Parameters() method Run (line 88) | public override int Run(string[] remainingArguments) class CommandWith2To5Parameters (line 94) | public class CommandWith2To5Parameters : ConsoleCommand method CommandWith2To5Parameters (line 96) | public CommandWith2To5Parameters() method Run (line 102) | public override int Run(string[] remainingArguments) method run_command_with_parameters (line 108) | private string run_command_with_parameters(string[] parameters) FILE: ManyConsole.Tests/Can_define_commands_with_aliases.cs class Can_define_commands_with_aliases (line 7) | public class Can_define_commands_with_aliases method CommandWithTwoAliasesDirect (line 9) | [Test] method CommandWithTwoAliasesFirst (line 16) | [Test] method CommandWithTwoAliasesSecond (line 23) | [Test] class CommandWith2Aliases (line 31) | public class CommandWith2Aliases: ConsoleCommand method CommandWith2Aliases (line 33) | public CommandWith2Aliases() method Run (line 40) | public override int Run(string[] remainingArguments) method run_command_with_parameters (line 46) | private string run_command_with_parameters(string[] parameters) FILE: ManyConsole.Tests/Can_have_required_parameters.cs class Can_have_required_parameters (line 6) | public class Can_have_required_parameters method CommandRunWithoutParameters (line 8) | [Test] method CommandRunWithIntegerParameters (line 31) | [Test] method when_the_command_is_run_without_the_parameter_then_the_console_gives_error_output (line 54) | void when_the_command_is_run_without_the_parameter_then_the_console_gi... FILE: ManyConsole.Tests/Can_modify_command_behavior_after_parsing_and_before_running.cs class Can_modify_command_behavior_after_parsing_and_before_running (line 10) | public class Can_modify_command_behavior_after_parsing_and_before_running class OverridingCommand (line 12) | public class OverridingCommand : ConsoleCommand method OverridingCommand (line 14) | public OverridingCommand() method OverrideAfterHandlingArgumentsBeforeRun (line 22) | public override int? OverrideAfterHandlingArgumentsBeforeRun(string[... method Run (line 27) | public override int Run(string[] remainingArguments) method ReturnCodeAndHalt (line 33) | [Test] FILE: ManyConsole.Tests/Can_overwrite_options_property.cs class Can_overwrite_options_property (line 9) | public class Can_overwrite_options_property class OverwriteCommand (line 11) | public class OverwriteCommand : ConsoleCommand method OverwriteCommand (line 17) | public OverwriteCommand() method Run (line 28) | public override int Run(string[] remainingArguments) method DoNotLooseOtherArgumentsWhenPropertyOptionsAreOverwritten (line 34) | [Test] FILE: ManyConsole.Tests/Can_verify_number_of_arguments_passed_to_command.cs class Can_verify_number_of_arguments_passed_to_command (line 7) | public class Can_verify_number_of_arguments_passed_to_command method Expecting5CalledWith0 (line 9) | [Test] method Expecting5CalledWith8 (line 16) | [Test] method Expecting5CalledWith5 (line 23) | [Test] class CommandWith5Parameters (line 31) | public class CommandWith5Parameters : ConsoleCommand method CommandWith5Parameters (line 33) | public CommandWith5Parameters() method Run (line 39) | public override int Run(string[] remainingArguments) method run_command_with_parameters (line 45) | private string run_command_with_parameters(string[] parameters) FILE: ManyConsole.Tests/ConsoleModeCommandSpecs/StatusEchoCommand.cs class StatusEchoCommand (line 5) | public class StatusEchoCommand : ConsoleCommand method StatusEchoCommand (line 9) | public StatusEchoCommand() method Run (line 17) | public override int Run(string[] remainingArguments) FILE: ManyConsole.Tests/Console_interface_is_simplified_when_there_is_only_one_command.cs class Console_interface_is_simplified_when_there_is_only_one_command (line 6) | public class Console_interface_is_simplified_when_there_is_only_one_command class ExampleCommand (line 10) | public class ExampleCommand : ConsoleCommand method ExampleCommand (line 12) | public ExampleCommand() method Run (line 19) | public override int Run(string[] remainingArguments) method NoParametersSpecified (line 27) | [Test] method OnlyCommandIsSpecified (line 39) | [Test] method OnlyParameterIsNotCommand (line 51) | [Test] method CommandAndParameterSpecified (line 63) | [Test] method then_the_command_runs_without_tracing_parameter_information (line 75) | private void then_the_command_runs_without_tracing_parameter_informati... FILE: ManyConsole.Tests/Multiple_dispatch_calls_dont_interfere_with_each_other.cs class Multiple_dispatch_calls_dont_interfere_with_each_other (line 7) | public class Multiple_dispatch_calls_dont_interfere_with_each_other method RepeatedlyDispatchingCommand (line 9) | [Test] class SomeProgram (line 28) | public class SomeProgram method GetCommands (line 30) | public static CoordinateCommand[] GetCommands(StringWriter trace) class CoordinateCommand (line 39) | public class CoordinateCommand : ConsoleCommand method CoordinateCommand (line 43) | public CoordinateCommand(TextWriter recorder) method Run (line 58) | public override int Run(string[] remainingArguments) FILE: ManyConsole.Tests/MyStringAssert.cs class MyStringAssert (line 6) | static class MyStringAssert method ContainsInOrder (line 8) | public static void ContainsInOrder(string actual, params string[] args) FILE: ManyConsole.Tests/Show_useful_error_information.cs class Show_useful_error_information (line 7) | public class Show_useful_error_information method UserTypesInputRejectedByNDeskOptions (line 11) | [Test] class SomeCommandWithAParameter (line 37) | class SomeCommandWithAParameter : ConsoleCommand method SomeCommandWithAParameter (line 39) | public SomeCommandWithAParameter() method Run (line 45) | public override int Run(string[] remainingArguments) class SomeCommandThrowingAnException (line 51) | class SomeCommandThrowingAnException : ConsoleCommand method SomeCommandThrowingAnException (line 53) | public SomeCommandThrowingAnException() method Run (line 58) | public override int Run(string[] remainingArguments) FILE: ManyConsole.Tests/TestCommand.cs class TestCommand (line 8) | public class TestCommand : ConsoleCommand method Run (line 12) | public override int Run(string[] remainingArguments) FILE: ManyConsole.Tests/abstract_commands_arent_loaded.cs class abstract_commands_arent_loaded (line 6) | public class abstract_commands_arent_loaded class AbstractCommand (line 8) | public abstract class AbstractCommand : ConsoleCommand class AnotherAbstractCommand (line 12) | public abstract class AnotherAbstractCommand : AbstractCommand method AnotherAbstractCommand (line 14) | public AnotherAbstractCommand() {} class NonabstractCommand (line 17) | public class NonabstractCommand : AnotherAbstractCommand method NonabstractCommand (line 19) | public NonabstractCommand() method Run (line 24) | public override int Run(string[] remainingArguments) method AbstractCommandArentLoaded (line 30) | [Test] FILE: ManyConsole.Tests/lets_user_browse_command_help.cs class lets_user_browse_command_help (line 9) | public class lets_user_browse_command_help method TestCommandDescriptions (line 11) | [Test] method WhenTheUserDoesNotSpecifyACommandThenShowAvailableCommands (line 32) | private void WhenTheUserDoesNotSpecifyACommandThenShowAvailableCommand... method ShouldShowHelpWhenRequested (line 48) | private void ShouldShowHelpWhenRequested(List commands... FILE: ManyConsole.Tests/show_useful_command_summary.cs class show_useful_command_summary (line 8) | public class show_useful_command_summary class SomeCommand (line 10) | class SomeCommand : ConsoleCommand method SomeCommand (line 12) | public SomeCommand() method Run (line 23) | public override int Run(string[] remainingArguments) method RunSimpleCommand (line 29) | [Test] FILE: ManyConsole/ConsoleCommand.cs class ConsoleCommand (line 11) | public abstract class ConsoleCommand : ConsoleUtil method ConsoleCommand (line 13) | public ConsoleCommand() method IsCommand (line 53) | public ConsoleCommand IsCommand(string command, string oneLineDescript... method HasAlias (line 59) | public ConsoleCommand HasAlias(string alias) method HasLongDescription (line 72) | public ConsoleCommand HasLongDescription(string longDescription) method HasAdditionalArguments (line 78) | public ConsoleCommand HasAdditionalArguments(int? count = 0, string he... method HasAdditionalArgumentsBetween (line 84) | public ConsoleCommand HasAdditionalArgumentsBetween(int? min, int? max... method AllowsAnyAdditionalArguments (line 92) | public ConsoleCommand AllowsAnyAdditionalArguments(string helpText = "") method SkipsCommandSummaryBeforeRunning (line 98) | public ConsoleCommand SkipsCommandSummaryBeforeRunning() method SkipsPropertyInCommandSummary (line 104) | public ConsoleCommand SkipsPropertyInCommandSummary(string propertyName) method HasOption (line 110) | public ConsoleCommand HasOption(string prototype, string description, ... method HasRequiredOption (line 117) | public ConsoleCommand HasRequiredOption(string prototype, string descr... method HasOption (line 124) | public ConsoleCommand HasOption(string prototype, string descriptio... method HasRequiredOption (line 130) | public ConsoleCommand HasRequiredOption(string prototype, string de... method HasOption (line 151) | public ConsoleCommand HasOption(string prototype, string description, ... method HasOption (line 157) | public ConsoleCommand HasOption(string prototype, string... method CheckRequiredArguments (line 163) | public virtual void CheckRequiredArguments() method OverrideAfterHandlingArgumentsBeforeRun (line 174) | public virtual int? OverrideAfterHandlingArgumentsBeforeRun(string[] r... method Run (line 179) | public abstract int Run(string[] remainingArguments); method GetActualOptions (line 181) | public OptionSet GetActualOptions() FILE: ManyConsole/ConsoleCommandDispatcher.cs class ConsoleCommandDispatcher (line 11) | public class ConsoleCommandDispatcher method DispatchCommand (line 13) | public static int DispatchCommand(ConsoleCommand command, string[] arg... method DispatchCommand (line 18) | public static int DispatchCommand(IEnumerable commands... method DealWithException (line 94) | private static int DealWithException(Exception e, TextWriter console, ... method GetMatchingCommand (line 110) | private static ConsoleCommand GetMatchingCommand(IEnumerable remainingArgu... method FindCommandsInSameAssemblyAs (line 153) | public static IEnumerable FindCommandsInSameAssemblyAs... method FindCommandsInAllLoadedAssemblies (line 161) | public static IEnumerable FindCommandsInAllLoadedAssem... method FindCommandsInAssembly (line 166) | public static IEnumerable FindCommandsInAssembly(Assem... FILE: ManyConsole/ConsoleHelpAsException.cs class ConsoleHelpAsException (line 9) | public class ConsoleHelpAsException : Exception method ConsoleHelpAsException (line 11) | public ConsoleHelpAsException(string message) : base(message) FILE: ManyConsole/Internal/ConsoleHelp.cs class ConsoleHelp (line 11) | public class ConsoleHelp method ShowSummaryOfCommands (line 13) | public static void ShowSummaryOfCommands(IEnumerable c... method ShowCommandHelp (line 34) | public static void ShowCommandHelp(ConsoleCommand selectedCommand, Tex... method ShowParsedCommand (line 78) | public static void ShowParsedCommand(ConsoleCommand consoleCommand, Te... method MakeObjectReadable (line 120) | static string MakeObjectReadable(object value) FILE: ManyConsole/Internal/ConsoleRedirectionDetection.cs type IConsoleRedirectionDetection (line 7) | public interface IConsoleRedirectionDetection method IsOutputRedirected (line 9) | bool IsOutputRedirected(); method IsInputRedirected (line 10) | bool IsInputRedirected(); method IsErrorRedirected (line 11) | bool IsErrorRedirected(); class ConsoleRedirectionDetection (line 14) | public class ConsoleRedirectionDetection : IConsoleRedirectionDetection method IsOutputRedirected (line 16) | public bool IsOutputRedirected() method IsInputRedirected (line 20) | public bool IsInputRedirected() method IsErrorRedirected (line 24) | public bool IsErrorRedirected() FILE: ManyConsole/Internal/ConsoleUtil.cs class ConsoleUtil (line 5) | public abstract class ConsoleUtil method VerifyNumberOfArguments (line 7) | public static void VerifyNumberOfArguments(string[] args, int? expecte... FILE: ManyConsole/Internal/RequiredOptionRecord.cs class RequiredOptionRecord (line 8) | public class RequiredOptionRecord FILE: ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/ConsoleModeCommandSpecification.cs class ConsoleModeCommandSpecification (line 8) | public abstract class ConsoleModeCommandSpecification method RunConsoleModeCommand (line 10) | public Func RunConsoleModeCommand(string[] lines, bool inputIsFro... FILE: ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/Should_fail_strictly_on_error_when_running_noninteractive.cs class Should_fail_strictly_on_error_when_running_noninteractive (line 5) | public class Should_fail_strictly_on_error_when_running_noninteractive :... method ConsoleInputFromUserSuccess (line 7) | [Test] method ConsoleInputFromUserFail (line 26) | [Test] method ConsoleInputNotFromUserSuccess (line 43) | [Test] FILE: ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/Should_give_user_prompt_in_interactive_mode.cs class Should_give_user_prompt_in_interactive_mode (line 6) | public class Should_give_user_prompt_in_interactive_mode : ConsoleModeCo... method ConsoleModeCommandIsRunningForTheUser (line 8) | [Test] method ConsoleModeCommandIsNotRunningForTheUser (line 25) | [Test] FILE: ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/Should_interpret_quotes_properly.cs class Should_interpret_quotes_properly (line 6) | public class Should_interpret_quotes_properly : ConsoleModeCommandSpecif... class AccumulateStringsCommand (line 8) | public class AccumulateStringsCommand : ConsoleCommand method AccumulateStringsCommand (line 13) | public AccumulateStringsCommand() method Run (line 20) | public override int Run(string[] remainingArguments) method CommandRunWithQuotedInput (line 27) | [Test] FILE: ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/StatusEchoCommand.cs class StatusEchoCommand (line 5) | public class StatusEchoCommand : ConsoleCommand method StatusEchoCommand (line 9) | public StatusEchoCommand() method Run (line 17) | public override int Run(string[] remainingArguments) FILE: ManyConsoleModeCommand/ConsoleModeCommand.cs class ConsoleModeCommand (line 10) | public class ConsoleModeCommand : ConsoleCommand method ConsoleModeCommand (line 19) | public ConsoleModeCommand( method ConsoleModeCommand (line 28) | [Obsolete("Its preferred to override methods on ConsoleModeCommand and... method WritePromptForCommands (line 56) | public virtual void WritePromptForCommands() method GetNextCommands (line 66) | public virtual IEnumerable GetNextCommands() method Run (line 71) | public override int Run(string[] remainingArguments) method SetConsoleRedirectionDetection (line 121) | public void SetConsoleRedirectionDetection(IConsoleRedirectionDetectio... FILE: ManyConsoleModeCommand/Internal/CommandLineParser.cs class CommandLineParser (line 6) | public static class CommandLineParser method Parse (line 15) | public static string[] Parse(string commandLine) method CommandLineToArgvW (line 39) | [DllImport("shell32.dll", SetLastError = true)] FILE: SampleConsole/DumpEmlFilesCommand.cs class DumpEmlFilesCommand (line 10) | public class DumpEmlFilesCommand : ConsoleCommand method DumpEmlFilesCommand (line 12) | public DumpEmlFilesCommand() method Run (line 26) | public override int Run(string[] remainingArguments) method PrintEmlDirectory (line 46) | private void PrintEmlDirectory(string directory) method PrintEmlFile (line 63) | private void PrintEmlFile(string filepath) FILE: SampleConsole/EchoStringsCommand.cs class EchoStringsCommand (line 9) | public class EchoStringsCommand : ConsoleCommand method EchoStringsCommand (line 13) | public EchoStringsCommand() method Run (line 25) | public override int Run(string[] remainingArguments) FILE: SampleConsole/ExampleCommand.cs class ExampleCommand (line 11) | public class ExampleCommand : ConsoleCommand method ExampleCommand (line 37) | public ExampleCommand() method Run (line 65) | public override int Run(string[] remainingArguments) FILE: SampleConsole/GetTimeCommand.cs class GetTimeCommand (line 12) | public class GetTimeCommand : ConsoleCommand method GetTimeCommand (line 14) | public GetTimeCommand() method Run (line 19) | public override int Run(string[] remainingArguments) FILE: SampleConsole/MattsCommand.cs class MattsCommand (line 9) | public class MattsCommand : ConsoleCommand method MattsCommand (line 13) | public MattsCommand() method Run (line 19) | public override int Run(string[] remainingArguments) FILE: SampleConsole/Program.cs class Program (line 8) | class Program method Main (line 10) | static int Main(string[] args) method GetCommands (line 19) | public static IEnumerable GetCommands() FILE: SampleConsole/SimpleConsoleModeCommand.cs class SimpleConsoleModeCommand (line 9) | public class SimpleConsoleModeCommand : ConsoleModeCommand method SimpleConsoleModeCommand (line 11) | public SimpleConsoleModeCommand() method GetNextCommands (line 16) | public override IEnumerable GetNextCommands() FILE: SampleConsole/StatefulConsoleModeCommand.cs class StatefulConsoleModeCommand (line 9) | public class StatefulConsoleModeCommand : ConsoleModeCommand method StatefulConsoleModeCommand (line 13) | public StatefulConsoleModeCommand() method WritePromptForCommands (line 18) | public override void WritePromptForCommands() method GetNextCommands (line 25) | public override IEnumerable GetNextCommands() FILE: SampleConsole/ThrowException.cs class ThrowException (line 9) | public class ThrowException : ConsoleCommand method ThrowException (line 11) | public ThrowException() method Run (line 19) | public override int Run(string[] remainingArguments) FILE: lib/Sasa-v0.9.3-docs/JS/Common.js function SetSectionVisibility (line 39) | function SetSectionVisibility(sectionIndex, value) function ToggleSectionVisibility (line 67) | function ToggleSectionVisibility(sectionIndex) function ToggleAllSectionsVisibility (line 116) | function ToggleAllSectionsVisibility() function SetExpandCollapseAllToCollapseAll (line 153) | function SetExpandCollapseAllToCollapseAll() function SetExpandCollapseAllToExpandAll (line 169) | function SetExpandCollapseAllToExpandAll() function ReplaceFileName (line 185) | function ReplaceFileName(filePath, fileName) function ToggleLeftFrame (line 206) | function ToggleLeftFrame() FILE: lib/Sasa-v0.9.3-docs/JS/ImmJSLib.js function MouseEventArgs (line 27) | function MouseEventArgs(e) function GetStyleValue (line 49) | function GetStyleValue(obj, propertyName) FILE: lib/Sasa-v0.9.3-docs/JS/TreeView.js function TV_Node_Clicked (line 23) | function TV_Node_Clicked(subtreePath) function TV_ToggleSubtreeVisibility (line 44) | function TV_ToggleSubtreeVisibility(subtreeDiv, iconImg, value) function TV_NodeLink_Clicked (line 62) | function TV_NodeLink_Clicked(aElement, subtreePath)