다음을 통해 공유


WorkflowPersistenceService 생성자

정의

파생 클래스에서 구현되는 경우에는 WorkflowPersistenceService 클래스의 새 인스턴스를 초기화합니다.

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

예제

다음 예제에서는 SqlWorkflowPersistenceService에서 파생된 WorkflowPersistenceService 클래스의 인스턴스를 만드는 방법을 보여 줍니다. 이 예제는 Program.cs 클래스에 있는 Nested Exception Handlers SDK 샘플의 일부입니다. 자세한 내용은 참조는 Nested Exception Handlers 샘플합니다.

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

적용 대상