7 types derived from AsynchronousCommandLineAction
aspire (1)
Commands\ResourceCommand.cs (1)
592
private sealed class ResourceCommandHelpAction(ResourceCommand command) :
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
12 references to AsynchronousCommandLineAction
Aspire.Cli.Tests (4)
Commands\BaseCommandTests.cs (4)
140
var
action = Assert.IsAssignableFrom<System.CommandLine.Invocation.
AsynchronousCommandLineAction
>(result.Action);
161
var
action = Assert.IsAssignableFrom<System.CommandLine.Invocation.
AsynchronousCommandLineAction
>(result.Action);
dotnet (1)
Commands\DotNetCommandFactory.cs (1)
41
if (command?.Action is
AsynchronousCommandLineAction
action)
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Commands\DotNetCommandFactory.cs (1)
41
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
)