ServiceHealthBehavior.TryParseHttpStatusCodeQueryParameter Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Attempts to parse the HTTP status code of a query string variable and returns a value that indicates whether the parsing operation succeeded.
protected:
static bool TryParseHttpStatusCodeQueryParameter(System::String ^ parameterName, System::String ^ parameter, System::Net::HttpStatusCode defaultErrorCode, [Runtime::InteropServices::Out] System::Net::HttpStatusCode % result);
protected static bool TryParseHttpStatusCodeQueryParameter (string parameterName, string parameter, System.Net.HttpStatusCode defaultErrorCode, out System.Net.HttpStatusCode result);
static member TryParseHttpStatusCodeQueryParameter : string * string * System.Net.HttpStatusCode * HttpStatusCode -> bool
Protected Shared Function TryParseHttpStatusCodeQueryParameter (parameterName As String, parameter As String, defaultErrorCode As HttpStatusCode, ByRef result As HttpStatusCode) As Boolean
Parameters
- parameterName
- String
The name of the parameter whose value the method attempts to parse.
- parameter
- String
The field/value pair of the query string.
- defaultErrorCode
- HttpStatusCode
The value to be assigned to the argument if the parsing operation fails.
- result
- HttpStatusCode
When the method returns, the value of the parsed HTTP status code argument.
Returns
true
if the parsing operation succeeded; otherwise, false
.
Exceptions
Applies to
.NET