다음을 통해 공유


WorkflowRuntime 만들기

Windows Workflow Foundation을 초기화하는 기본 메커니즘은 다음과 같이 WorkflowRuntime 클래스를 사용하는 것입니다.

Imports System
Imports System.Threading
Imports System.Workflow.Runtime
Imports System.Workflow.Runtime.Hosting

Class Program

    Shared Sub Main()
        Using workflowRuntime As WorkflowRuntime = New WorkflowRuntime()
        End Using
    End Sub
End Class
using System;
using System.Threading;
using System.Workflow.Runtime;
using System.Workflow.Runtime.Hosting;

class Program
{
    static void Main(string[] args)
    {
        using (WorkflowRuntime workflowRuntime = new WorkflowRuntime())
        {
        }
    }
}

using 문 본문에서 WorkflowRuntime 개체가 초기화되고 사용할 준비가 됩니다. 이제 런타임 엔진에서 발생하는 이벤트를 처리할 이벤트 처리기를 만들고, 런타임 엔진에서 사용하는 기본 서비스를 검색 및 구성한 다음 마지막으로 워크플로 인스턴스를 만들고 시작할 수 있습니다. Windows Workflow Foundation 서비스에 대한 자세한 내용은 Windows Workflow Foundation 서비스를 참조하십시오.

참고 항목

개념

WorkflowRuntime 이벤트 처리
워크플로 실행

Copyright © 2007 by Microsoft Corporation. All rights reserved.