次の方法で共有


CommandExtensions.Parse メソッド

定義

オーバーロード

Parse(Command, String)

指定したコマンドを使用して、コマンド ライン文字列値を解析します。

Parse(Command, String[])

指定したコマンドを使用して配列文字列を解析します。

Parse(Command, String)

指定したコマンドを使用して、コマンド ライン文字列値を解析します。

public:
[System::Runtime::CompilerServices::Extension]
 static System::CommandLine::Parsing::ParseResult ^ Parse(System::CommandLine::Command ^ command, System::String ^ commandLine);
public static System.CommandLine.Parsing.ParseResult Parse (this System.CommandLine.Command command, string commandLine);
static member Parse : System.CommandLine.Command * string -> System.CommandLine.Parsing.ParseResult
<Extension()>
Public Function Parse (command As Command, commandLine As String) As ParseResult

パラメーター

command
Command

コマンド ライン入力の解析に使用するコマンド。

commandLine
String

解析するコマンド ライン文字列。ターミナルに入力できる内容に相当するスペースと引用符を含めることができます。

戻り値

解析操作の結果を記述する解析結果。

注釈

コマンド ライン文字列入力は、コマンド ラインで渡されたかのようにトークンに分割されます。

適用対象

Parse(Command, String[])

指定したコマンドを使用して配列文字列を解析します。

public:
[System::Runtime::CompilerServices::Extension]
 static System::CommandLine::Parsing::ParseResult ^ Parse(System::CommandLine::Command ^ command, ... cli::array <System::String ^> ^ args);
public static System.CommandLine.Parsing.ParseResult Parse (this System.CommandLine.Command command, params string[] args);
static member Parse : System.CommandLine.Command * string[] -> System.CommandLine.Parsing.ParseResult
<Extension()>
Public Function Parse (command As Command, ParamArray args As String()) As ParseResult

パラメーター

command
Command

コマンド ライン入力の解析に使用するコマンド。

args
String[]

解析する文字列引数。

戻り値

解析操作の結果を記述する解析結果。

適用対象