共用方式為


ParserExtensions.Invoke 方法

定義

多載

Invoke(Parser, String, IConsole)

剖析命令行字串值,並叫用所指示命令的處理程式。

Invoke(Parser, String[], IConsole)

剖析命令行字串陣列,並叫用所指示命令的處理程式。

Invoke(Parser, String, IConsole)

剖析命令行字串值,並叫用所指示命令的處理程式。

public static int Invoke (this System.CommandLine.Parsing.Parser parser, string commandLine, System.CommandLine.IConsole? console = default);
static member Invoke : System.CommandLine.Parsing.Parser * string * System.CommandLine.IConsole -> int
<Extension()>
Public Function Invoke (parser As Parser, commandLine As String, Optional console As IConsole = Nothing) As Integer

參數

parser
Parser
commandLine
String
console
IConsole

傳回

調用的結束代碼。

備註

命令行字串輸入會分割成令牌,就像已在命令行上傳遞一樣。

適用於

Invoke(Parser, String[], IConsole)

剖析命令行字串陣列,並叫用所指示命令的處理程式。

public static int Invoke (this System.CommandLine.Parsing.Parser parser, string[] args, System.CommandLine.IConsole? console = default);
static member Invoke : System.CommandLine.Parsing.Parser * string[] * System.CommandLine.IConsole -> int
<Extension()>
Public Function Invoke (parser As Parser, args As String(), Optional console As IConsole = Nothing) As Integer

參數

parser
Parser
args
String[]
console
IConsole

傳回

調用的結束代碼。

適用於