Share via


ExceptionContext Class

 

Represents an exception and the contextual data associated with it when it was caught.

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

Inheritance Hierarchy

System.Object
  System.Web.Http.ExceptionHandling.ExceptionContext

Syntax

public class ExceptionContext
public ref class ExceptionContext 
type ExceptionContext = class end
Public Class ExceptionContext

Constructors

Name Description
System_CAPS_pubmethod ExceptionContext(Exception, ExceptionContextCatchBlock)

Initializes a new instance of the ExceptionContext class.

System_CAPS_pubmethod ExceptionContext(Exception, ExceptionContextCatchBlock, HttpActionContext)

Initializes a new instance of the ExceptionContext class.

System_CAPS_pubmethod ExceptionContext(Exception, ExceptionContextCatchBlock, HttpRequestMessage)

Initializes a new instance of the ExceptionContext class.

System_CAPS_pubmethod ExceptionContext(Exception, ExceptionContextCatchBlock, HttpRequestMessage, HttpResponseMessage)

Initializes a new instance of the ExceptionContext class.

Properties

Name Description
System_CAPS_pubproperty ActionContext

Gets the action context in which the exception occurred, if available.

System_CAPS_pubproperty CatchBlock

Gets the catch block in which the exception was caught.

System_CAPS_pubproperty ControllerContext

Gets the controller context in which the exception occurred, if available.

System_CAPS_pubproperty Exception

Gets the caught exception.

System_CAPS_pubproperty Request

Gets the request being processed when the exception was caught.

System_CAPS_pubproperty RequestContext

Gets the request context in which the exception occurred.

System_CAPS_pubproperty Response

Gets the response being sent when the exception was caught.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

System.Web.Http.ExceptionHandling Namespace

Return to top