Click or drag to resize
EnqueuedState Constructor (String)
Initializes a new instance of the EnqueuedState class with the specified queue name.

Namespace: Hangfire.States
Assembly: Hangfire.Core (in Hangfire.Core.dll) Version: 1.5.0.0
Syntax
public EnqueuedState(
	[NotNullAttribute] string queue
)

Parameters

queue
Type: SystemString
The queue name to which a background job identifier will be added.
Exceptions
ExceptionCondition
ArgumentNullException The queue argument is , empty or consist only of white-space characters.
ArgumentException The queue argument is not a valid queue name.
See Also