Base:
property
Action
System.CommandLine.Option.Action
6 writes to Action
aspire (2)
Commands\ResourceCommand.cs (1)
95Options.Add(new HelpOption { Action = new ResourceCommandHelpAction(this) });
Commands\RootCommand.cs (1)
274helpOption.Action = new GroupedHelpAction(this, _ansiConsole);
crossgen2 (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
165helpOption.Action = new CustomizedHelpAction(helpOption, customizer);
dotnet (1)
Parser.cs (1)
137helpOption.Action = new PrintHelpAction(helpOption, DotnetHelpBuilder.Instance.Value);
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Parser.cs (1)
135helpOption.Action = new AotPrintHelpAction(helpOption, DotnetHelpBuilder.Instance.Value, rootCommand.NewCommand, rootCommand.TestCommand);
ilc (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
165helpOption.Action = new CustomizedHelpAction(helpOption, customizer);
4 references to Action
crossgen2 (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
476_helpAction = (HelpAction)helpOption.Action;
ilc (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
476_helpAction = (HelpAction)helpOption.Action;
System.CommandLine (2)
Invocation\ParseErrorAction.cs (2)
73if (availableHelpOptions.FirstOrDefault(o => o is not null) is { Action: not null } helpOption) 75switch (helpOption.Action)