CommandExtensions.InvokeAsync 方法

定义

重载

InvokeAsync(Command, String, IConsole)

分析和调用命令。

InvokeAsync(Command, String[], IConsole)

分析和调用命令。

InvokeAsync(Command, String, IConsole)

分析和调用命令。

public static System.Threading.Tasks.Task<int> InvokeAsync (this System.CommandLine.Command command, string commandLine, System.CommandLine.IConsole? console = default);
static member InvokeAsync : System.CommandLine.Command * string * System.CommandLine.IConsole -> System.Threading.Tasks.Task<int>
<Extension()>
Public Function InvokeAsync (command As Command, commandLine As String, Optional console As IConsole = Nothing) As Task(Of Integer)

参数

command
Command

要调用的命令。

commandLine
String

要分析的命令行。

console
IConsole

调用期间输出写入到的控制台。

返回

调用的退出代码。

注解

命令行字符串输入将拆分为标记,就像在命令行上传递一样。

此方法存储在任务中,它返回该方法的同步对应项可能引发的所有非使用异常。 如果异常存储在返回的任务中,则在等待任务时将引发该异常。 使用异常(如 ArgumentException)仍会同步引发。 有关存储的异常,请参阅 引发的 Invoke(Command, String, IConsole)异常。

适用于

InvokeAsync(Command, String[], IConsole)

分析和调用命令。

public static System.Threading.Tasks.Task<int> InvokeAsync (this System.CommandLine.Command command, string[] args, System.CommandLine.IConsole? console = default);
static member InvokeAsync : System.CommandLine.Command * string[] * System.CommandLine.IConsole -> System.Threading.Tasks.Task<int>
<Extension()>
Public Function InvokeAsync (command As Command, args As String(), Optional console As IConsole = Nothing) As Task(Of Integer)

参数

command
Command

要调用的命令。

args
String[]

要分析的参数。

console
IConsole

调用期间输出写入到的控制台。

返回

调用的退出代码。

注解

此方法存储在任务中,它返回该方法的同步对应项可能引发的所有非使用异常。 如果异常存储在返回的任务中,则在等待任务时将引发该异常。 使用异常(如 ArgumentException)仍会同步引发。 有关存储的异常,请参阅 引发的 Invoke(Command, String[], IConsole)异常。

适用于