ParseResultExtensions.HasOption(ParseResult, Option) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示给定选项是否存在于分析结果中。
public:
[System::Runtime::CompilerServices::Extension]
static bool HasOption(System::CommandLine::Parsing::ParseResult ^ parseResult, System::CommandLine::Option ^ option);
public static bool HasOption (this System.CommandLine.Parsing.ParseResult parseResult, System.CommandLine.Option option);
static member HasOption : System.CommandLine.Parsing.ParseResult * System.CommandLine.Option -> bool
<Extension()>
Public Function HasOption (parseResult As ParseResult, option As Option) As Boolean
参数
- parseResult
- ParseResult
分析结果检查是否存在选项。
- option
- Option
用于检查是否存在 的选项。
返回
true
如果存在选项,则为 ;否则为 false
。
注解
如果选项定义了默认值, true
则将返回 。