SymbolResult.FindResultFor 方法

定义

重载

FindResultFor(Argument)

查找分析树中任意位置的特定参数的结果,包括父符号和子符号结果。

FindResultFor(Command)

在分析树中的任何位置查找特定命令的结果,包括父符号和子符号结果。

FindResultFor(Option)

查找分析树中任意位置的特定选项的结果,包括父符号和子符号结果。

FindResultFor(Argument)

查找分析树中任意位置的特定参数的结果,包括父符号和子符号结果。

public:
 virtual System::CommandLine::Parsing::ArgumentResult ^ FindResultFor(System::CommandLine::Argument ^ argument);
public virtual System.CommandLine.Parsing.ArgumentResult? FindResultFor (System.CommandLine.Argument argument);
abstract member FindResultFor : System.CommandLine.Argument -> System.CommandLine.Parsing.ArgumentResult
override this.FindResultFor : System.CommandLine.Argument -> System.CommandLine.Parsing.ArgumentResult
Public Overridable Function FindResultFor (argument As Argument) As ArgumentResult

参数

argument
Argument

要为其查找结果的参数。

返回

如果参数与分析程序匹配或具有默认值,则为参数结果;否则为 null

适用于

FindResultFor(Command)

在分析树中的任何位置查找特定命令的结果,包括父符号和子符号结果。

public:
 virtual System::CommandLine::Parsing::CommandResult ^ FindResultFor(System::CommandLine::Command ^ command);
public virtual System.CommandLine.Parsing.CommandResult? FindResultFor (System.CommandLine.Command command);
abstract member FindResultFor : System.CommandLine.Command -> System.CommandLine.Parsing.CommandResult
override this.FindResultFor : System.CommandLine.Command -> System.CommandLine.Parsing.CommandResult
Public Overridable Function FindResultFor (command As Command) As CommandResult

参数

command
Command

要为其查找结果的命令。

返回

如果命令与分析程序匹配,则为命令结果;否则为 null

适用于

FindResultFor(Option)

查找分析树中任意位置的特定选项的结果,包括父符号和子符号结果。

public:
 virtual System::CommandLine::Parsing::OptionResult ^ FindResultFor(System::CommandLine::Option ^ option);
public virtual System.CommandLine.Parsing.OptionResult? FindResultFor (System.CommandLine.Option option);
abstract member FindResultFor : System.CommandLine.Option -> System.CommandLine.Parsing.OptionResult
override this.FindResultFor : System.CommandLine.Option -> System.CommandLine.Parsing.OptionResult
Public Overridable Function FindResultFor (option As Option) As OptionResult

参数

option
Option

要查找其结果的选项。

返回

如果选项与分析程序匹配或具有默认值,则为选项结果;否则为 null

适用于