WorkflowPersistenceService Конструктор

Определение

При реализации в производном классе инициализирует новый экземпляр класса WorkflowPersistenceService.

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

Примеры

В следующем примере показано создание экземпляра класса SqlWorkflowPersistenceService (производного от WorkflowPersistenceService). Данный пример является частью образца SDK «Nested Exception Handlers» из класса Program.cs. Дополнительные сведения см. в примере вложенных обработчиков исключений.

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

Применяется к