WorkflowApplication.InstanceStore 属性

定义

获取或设置一个对象,该对象提供对工作流应用程序的当前实例保留状态的访问。

public:
 property System::Runtime::DurableInstancing::InstanceStore ^ InstanceStore { System::Runtime::DurableInstancing::InstanceStore ^ get(); void set(System::Runtime::DurableInstancing::InstanceStore ^ value); };
public System.Runtime.DurableInstancing.InstanceStore InstanceStore { get; set; }
member this.InstanceStore : System.Runtime.DurableInstancing.InstanceStore with get, set
Public Property InstanceStore As InstanceStore

属性值

实例存储区。

示例

下面的示例创建 WorkflowApplication 实例,然后使用 InstanceStore 配置 SqlWorkflowInstanceStore。 本代码示例是如何:创建和运行长时间运行的工作流的一部分,该示例是入门教程 [.NET Framework 4.5] 的一部分。

Activity wf = new WriteLine
{
    Text = "Hello world."
};

WorkflowApplication wfApp = new WorkflowApplication(wf);

Console.WriteLine("Id: {0}", wfApp.Id);

适用于