WorkflowSchedulerService 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파생 클래스에서 구현되는 경우에는 WorkflowSchedulerService 클래스의 새 인스턴스를 초기화합니다.
protected:
WorkflowSchedulerService();
protected WorkflowSchedulerService ();
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"))