C# Class PreStorm.RestException

Inheritance: System.Exception
Mostrar archivo Open project: jshirota/PreStorm Class Usage Examples

Public Methods

Method Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

When overridden in a derived class, sets the System.Runtime.Serialization.SerializationInfo with information about the exception.

RestException ( string url, string request, string response, string message, Exception innerException ) : System

Initializes a new instance of the RestException class.

Method Details

GetObjectData() public method

When overridden in a derived class, sets the System.Runtime.Serialization.SerializationInfo with information about the exception.
public GetObjectData ( SerializationInfo info, StreamingContext context ) : void
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return void

RestException() public method

Initializes a new instance of the RestException class.
public RestException ( string url, string request, string response, string message, Exception innerException ) : System
url string
request string
response string
message string
innerException System.Exception
return System