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 반환합니다.