WorkflowPersistenceService Constructor

Definition

When implemented in a derived class, initializes a new instance of the WorkflowPersistenceService class.

protected:
 WorkflowPersistenceService();
protected WorkflowPersistenceService ();
Protected Sub New ()

Examples

The following example demonstrates creating an instance of the SqlWorkflowPersistenceService class (derived from WorkflowPersistenceService). This example is from the Nested Exception Handlers SDK sample, from the Program.cs class. For more information, see the Nested Exception Handlers Sample.

// A workflow is always run asychronously; the main thread waits on this event so the program
// doesn't exit before the workflow completes
workflowRuntime.AddService(new SqlWorkflowPersistenceService("Initial Catalog=SqlPersistenceService;Data Source=localhost;Integrated Security=SSPI;"));
' A workflow is always run asychronously the main thread waits on Me event so the program
' doesn't exit before the workflow completes
WorkflowRuntime.AddService(New SqlWorkflowPersistenceService("Initial Catalog=SqlPersistenceServiceData Source=localhostIntegrated Security=SSPI"))

Applies to