Click or drag to resize
ClientExceptionContext Class
Provides the context for the OnClientException(ClientExceptionContext) method of the IClientExceptionFilter interface.
Inheritance Hierarchy

Namespace: Hangfire.Client
Assembly: Hangfire.Core (in Hangfire.Core.dll) Version: 1.5.0.0
Syntax
public class ClientExceptionContext : CreateContext

The ClientExceptionContext type exposes the following members.

Properties
  NameDescription
Public propertyConnection (Inherited from CreateContext.)
Public propertyException
Gets an exception that occurred during the creation of the job.
Public propertyExceptionHandled
Gets or sets a value that indicates that this ClientExceptionContext object handles an exception occurred during the creation of the job.
Public propertyInitialState
Gets the initial state of the creating job. Note, that the final state of the created job could be changed after the registered instances of the IElectStateFilter class are doing their job.
(Inherited from CreateContext.)
Public propertyItems
Gets an instance of the key-value storage. You can use it to pass additional information between different client filters or just between different methods.
(Inherited from CreateContext.)
Public propertyJob (Inherited from CreateContext.)
Public propertyParameters (Inherited from CreateContext.)
Public propertyStorage (Inherited from CreateContext.)
Top
See Also