CommandExtensions.Parse メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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[]
解析する文字列引数。
戻り値
解析操作の結果を記述する解析結果。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET