Windows Workflow Foundation(WF),是一项微软技术,用于定义、执行、管理工作流程(workflows)。目前已原生于Windows Vista作业系统,并可以安装在 Windows XP SP2Windows Server 2003 作业系统。

创作流程

工作流程包括活动。开发人员可以编写自己的特定域(domain-specific)的活动,然后利用他们在工作流程。WF 也提供了一般用途活动,涵盖若干控制流结构。

Hello World

  • C#
using System;
using System.Linq;
using System.Activities;
using System.Activities.Statements;
 
namespace HelloWorkflow
{
 
    class Program
    {
        static void Main(string[] args)
        {
            System.Activities.WorkflowInvoker.Invoke(new Workflow1());
            System.Console.ReadKey();
        }
    }
}

书籍

外部链接

Wikiwand in your browser!

Seamless Wikipedia browsing. On steroids.

Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.

Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.