Compartir a través de


Creación de WorkflowRuntime

El mecanismo predeterminado para inicializar Windows Workflow Foundation es utilizar la clase WorkflowRuntime, de la siguiente manera:

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())
        {
        }
    }
}

En el cuerpo de la instrucción using, se inicializa un objeto WorkflowRuntime y está preparado para su uso. En este punto, puede crear controladores de eventos para administrar los eventos provocados por el motor en tiempo de ejecución, recuperar y configurar cualquiera de los servicios base utilizados por el motor en tiempo de ejecución y, finalmente, crear e iniciar una instancia de flujo de trabajo. Para obtener más información sobre los servicios de Windows Workflow Foundation, vea Servicios de Windows Workflow Foundation.

Consulte también

Conceptos

Procesamiento de eventos WorkflowRuntime
Ejecución de flujos de trabajo

Copyright © 2007 Microsoft Corporation. Reservados todos los derechos.