ManualWorkflowSchedulerService Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ManualWorkflowSchedulerService class.
Overloads
ManualWorkflowSchedulerService() |
Initializes a new instance of the ManualWorkflowSchedulerService class. |
ManualWorkflowSchedulerService(Boolean) |
Initializes a new instance of the ManualWorkflowSchedulerService class. |
ManualWorkflowSchedulerService(NameValueCollection) |
Initializes a new instance of the ManualWorkflowSchedulerService class. |
ManualWorkflowSchedulerService()
Initializes a new instance of the ManualWorkflowSchedulerService class.
public:
ManualWorkflowSchedulerService();
public ManualWorkflowSchedulerService ();
Public Sub New ()
Applies to
ManualWorkflowSchedulerService(Boolean)
Initializes a new instance of the ManualWorkflowSchedulerService class.
public:
ManualWorkflowSchedulerService(bool useActiveTimers);
public ManualWorkflowSchedulerService (bool useActiveTimers);
new System.Workflow.Runtime.Hosting.ManualWorkflowSchedulerService : bool -> System.Workflow.Runtime.Hosting.ManualWorkflowSchedulerService
Public Sub New (useActiveTimers As Boolean)
Parameters
- useActiveTimers
- Boolean
Boolean
that determines how delay activities are handled. If true
, the scheduler service automatically resumes workflows after delay activities expire (by using an in-memory timer). If false
, the host must manually resume the workflow after the delay activities expire.
Applies to
ManualWorkflowSchedulerService(NameValueCollection)
Initializes a new instance of the ManualWorkflowSchedulerService class.
public:
ManualWorkflowSchedulerService(System::Collections::Specialized::NameValueCollection ^ parameters);
public ManualWorkflowSchedulerService (System.Collections.Specialized.NameValueCollection parameters);
new System.Workflow.Runtime.Hosting.ManualWorkflowSchedulerService : System.Collections.Specialized.NameValueCollection -> System.Workflow.Runtime.Hosting.ManualWorkflowSchedulerService
Public Sub New (parameters As NameValueCollection)
Parameters
- parameters
- NameValueCollection
A NameValueCollection that contains parameters for useActiveTimers
. If true
, the scheduler service automatically resumes workflows after delay activities expire (by using an in-memory timer). If false
, the host must manually resume the workflow after the delay activities expire.