NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HttpException Constructor (Int32, String, Exception)

Construct an exception using HTTP code, error message, and inner exception.

[Visual Basic]
Overloads Public Sub New( _
   ByVal httpCode As Integer, _
   ByVal message As String, _
   ByVal innerException As Exception _
)
[C#]
public HttpException(
   int httpCode,
   string message,
   Exception innerException
);
[C++]
public: HttpException(
   int httpCode,
   String* message,
   Exception* innerException
);
[JScript]
public function HttpException(
   httpCode : int,
   message : String,
   innerException : Exception
);

Parameters

httpCode
HTTP error code to be used in error messsage.
message
[To be supplied.]
innerException
[To be supplied.]

See Also

HttpException Class | HttpException Members | System.Web Namespace | HttpException Constructor Overload List