Freigeben über


WorkflowPersistenceService Konstruktor

Definition

Initialisiert beim Implementieren in einer abgeleiteten Klasse eine neue Instanz der WorkflowPersistenceService-Klasse.

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

Beispiele

Im folgenden Beispiel wird das Erstellen einer Instanz dieser SqlWorkflowPersistenceService-Klasse (abgeleitet von WorkflowPersistenceService) dargestellt. Dieses Beispiel stammt aus dem Nested Exception Handlers SDK-Beispiel in der Datei Program.cs. Weitere Informationen finden Sie im Beispiel für geschachtelte Ausnahmehandler.

// 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"))

Gilt für: