6 types derived from AsynchronousCommandLineAction
dotnet-format (4)
Commands\FormatAnalyzersCommand.cs (1)
29
private class FormatAnalyzersHandler :
AsynchronousCommandLineAction
Commands\FormatStyleCommand.cs (1)
29
private class FormatStyleHandler :
AsynchronousCommandLineAction
Commands\FormatWhitespaceCommand.cs (1)
60
private class FormatWhitespaceHandler :
AsynchronousCommandLineAction
Commands\RootFormatCommand.cs (1)
32
private class FormatCommandDefaultHandler :
AsynchronousCommandLineAction
Microsoft.TemplateEngine.Cli (1)
Commands\BaseCommand.cs (1)
233
private sealed class CommandAction :
AsynchronousCommandLineAction
System.CommandLine (1)
Invocation\AnonymousAsynchronousCommandLineAction.cs (1)
9
internal sealed class AnonymousAsynchronousCommandLineAction :
AsynchronousCommandLineAction
7 references to AsynchronousCommandLineAction
dotnet (1)
Commands\DotNetCommandFactory.cs (1)
39
if (command?.Action is
AsynchronousCommandLineAction
action)
System.CommandLine (6)
Invocation\InvocationPipeline.cs (3)
33
case
AsynchronousCommandLineAction
asyncAction:
57
case
AsynchronousCommandLineAction
asyncAction:
130
throw new InvalidOperationException($"{nameof(
AsynchronousCommandLineAction
)} called within non-async invocation.");
Invocation\ParseErrorAction.cs (1)
81
case
AsynchronousCommandLineAction
asyncAction:
ParseResult.cs (2)
304
if (Action is
AsynchronousCommandLineAction
)
313
if (action is
AsynchronousCommandLineAction
)