Bagikan melalui


WorkflowApplication.InstanceStore Properti

Definisi

Mendapatkan atau mengatur objek yang menyediakan akses ke status persisten dari instans aplikasi alur kerja saat ini.

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

Nilai Properti

Penyimpanan instans.

Contoh

Contoh berikut membuat instans WorkflowApplication lalu mengonfigurasi InstanceStore menggunakan SqlWorkflowInstanceStore. Contoh kode ini adalah bagian dari Cara: Membuat dan Menjalankan Alur Kerja yang Berjalan Lama, yang merupakan bagian dari Tutorial Memulai [.NET Framework 4.5].

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

WorkflowApplication wfApp = new WorkflowApplication(wf);

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

Berlaku untuk