Sdílet prostřednictvím


WorkflowPersistenceService Konstruktor

Definice

Při implementaci v odvozené třídě inicializuje novou instanci WorkflowPersistenceService třídy .

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

Příklady

Následující příklad ukazuje vytvoření instance SqlWorkflowPersistenceService třídy (odvozené z WorkflowPersistenceService). Tento příklad je z ukázky sady SDK vnořených obslužných rutin výjimek z třídy Program.cs. Další informace najdete v ukázce obslužných rutin vnořených výjimek.

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

Platí pro