| AttemptsExceededAction Enumeration |
Specifies a candidate state for a background job that will be chosen
by the
AutomaticRetryAttribute filter after exceeding
the number of retry attempts.
Namespace: HangfireAssembly: Hangfire.Core (in Hangfire.Core.dll) Version: 1.5.0.0
Syntax public enum AttemptsExceededAction
Public Enumeration AttemptsExceededAction
Members
| Member name | Value | Description |
---|
| Fail | 0 |
Background job will be moved to the FailedState.
|
| Delete | 1 |
Background job will be moved to the DeletedState.
|
See Also