Condividi tramite


WorkflowPersistenceService Costruttore

Definizione

Quando viene implementato in una classe derivata, inizializza una nuova istanza della classe WorkflowPersistenceService.

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

Esempio

Nell'esempio seguente viene illustrato come creare un'istanza della classe SqlWorkflowPersistenceService (derivata da WorkflowPersistenceService). Questo esempio è tratto dall'esempio SDK Nested Exception Handlers, dalla classe Program.cs. Per altre informazioni, vedere l'esempio di gestori di eccezioni annidati.

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

Si applica a