Share via


ExceptionHandlerContext.Result Property

 

Gets or sets the result providing the response message when the exception is handled.

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

Syntax

public IHttpActionResult Result {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
property IHttpActionResult^ Result {
    [CompilerGeneratedAttribute]
    IHttpActionResult^ get();
    [CompilerGeneratedAttribute]
    void set(IHttpActionResult^ value);
}
member Result : IHttpActionResult with get, set
Public Property Result As IHttpActionResult

Property Value

Type: System.Web.Http.IHttpActionResult

The result providing the response message when the exception is handled.

See Also

ExceptionHandlerContext Class
System.Web.Http.ExceptionHandling Namespace

Return to top