1 instantiation of CommandLineOptionMessage
dotnet (1)
Commands\Test\MTP\IPC\Serializers\CommandLineOptionMessagesSerializer.cs (1)
117commandLineOptionMessages.Add(new CommandLineOptionMessage(name, description, isHidden, isBuiltIn));
18 references to CommandLineOptionMessage
dotnet (18)
Commands\Test\MTP\IPC\Models\CommandLineOptionMessages.cs (1)
8internal sealed record CommandLineOptionMessages(string? ModulePath, CommandLineOptionMessage[]? CommandLineOptionMessageList) : IRequest;
Commands\Test\MTP\IPC\Serializers\CommandLineOptionMessagesSerializer.cs (6)
47List<CommandLineOptionMessage>? commandLineOptionMessages = null; 76private static List<CommandLineOptionMessage> ReadCommandLineOptionMessagesPayload(Stream stream) 78List<CommandLineOptionMessage> commandLineOptionMessages = []; 135private static void WriteCommandLineOptionMessagesPayload(Stream stream, CommandLineOptionMessage[]? commandLineOptionMessageList) 150foreach (CommandLineOptionMessage commandLineOptionMessage in commandLineOptionMessageList) 169private static ushort GetFieldCount(CommandLineOptionMessage commandLineOptionMessage) =>
Commands\Test\MTP\MicrosoftTestingPlatformTestCommand.Help.cs (7)
13private readonly ConcurrentDictionary<string, CommandLineOptionMessage> _commandLineOptionNameToModuleNames = []; 99foreach (CommandLineOptionMessage commandLineOption in commandLineOptionMessages.CommandLineOptionMessageList!) 127private (List<CommandLineOptionMessage> BuiltInOptions, List<CommandLineOptionMessage> NonBuiltInOptions) GetAllOptions(IList<Option> commandOptions) 129List<CommandLineOptionMessage> builtInOptions = []; 130List<CommandLineOptionMessage> nonBuiltInOptions = []; 135foreach (KeyValuePair<string, CommandLineOptionMessage> option in _commandLineOptionNameToModuleNames)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (4)
1002IEnumerable<CommandLineOptionMessage> builtInOptions, 1003IEnumerable<CommandLineOptionMessage> nonBuiltInOptions, 1025private void WriteOtherOptionsSection(HelpContext context, string title, IEnumerable<CommandLineOptionMessage> options) 1029foreach (var option in options)