ModelError.Exception Property

 

Gets or sets the exception object.

Namespace:   System.Web.Http.ModelBinding
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

public Exception Exception {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    private set;
}
public:
property Exception^ Exception {
    [CompilerGeneratedAttribute]
    Exception^ get();
    [CompilerGeneratedAttribute]
    private: void set(Exception^ value);
}
member Exception : Exception with get, private set
Public Property Exception As Exception
    Get
    Private Set
End Property

Property Value

Type: System.Exception

The exception object.

See Also

ModelError Class
System.Web.Http.ModelBinding Namespace

Return to top