ParserExtensions.Invoke 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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
傳回
調用的結束代碼。