ServiceHealthBehavior.TryParseBooleanQueryParameter 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试分析布尔查询字符串参数,并返回一个值,该值指示分析操作是否成功。
protected:
static bool TryParseBooleanQueryParameter(System::String ^ parameterName, System::String ^ parameter, bool defaultValue, [Runtime::InteropServices::Out] bool % result);
protected static bool TryParseBooleanQueryParameter (string parameterName, string parameter, bool defaultValue, out bool result);
static member TryParseBooleanQueryParameter : string * string * bool * bool -> bool
Protected Shared Function TryParseBooleanQueryParameter (parameterName As String, parameter As String, defaultValue As Boolean, ByRef result As Boolean) As Boolean
参数
- parameterName
- String
此方法尝试分析值的参数名。
- parameter
- String
查询字符串的字段/值对。
- defaultValue
- Boolean
如果分析操作失败,为要分配给 result
参数的值。
- result
- Boolean
返回方法时,分析的布尔参数的值。
返回
如果分析操作成功,则为 true
;否则为 false
。
例外
注解
如果方法 true
成功分析了字段的值,则方法 Boolean.TryParse 返回 。