C# Class Net.Http.WebApi.OData.ODataException

Inheritance: System.InvalidOperationException
Mostrar archivo Open project: TrevorPilley/Net.Http.WebApi.OData Class Usage Examples

Public Methods

Method Description
ODataException ( ) : System

Initialises a new instance of the ODataException class.

ODataException ( string message ) : System

Initialises a new instance of the ODataException class.

ODataException ( string message, Exception innerException ) : System

Initialises a new instance of the ODataException class.

Protected Methods

Method Description
ODataException ( SerializationInfo info, StreamingContext context ) : System

Initialises a new instance of the ODataException class.

Method Details

ODataException() public method

Initialises a new instance of the ODataException class.
public ODataException ( ) : System
return System

ODataException() protected method

Initialises a new instance of the ODataException class.
The parameter is null. The class name is null or is zero (0).
protected ODataException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System

ODataException() public method

Initialises a new instance of the ODataException class.
public ODataException ( string message ) : System
message string The message that describes the error.
return System

ODataException() public method

Initialises a new instance of the ODataException class.
public ODataException ( string message, Exception innerException ) : System
message string The error message that explains the reason for the exception.
innerException Exception The exception that is the cause of the current exception. If the parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception.
return System