Bagikan melalui


WorkflowApplicationEventArgs.InstanceId Properti

Definisi

Pengidentifikasi unik instans alur kerja.

public:
 property Guid InstanceId { Guid get(); };
public Guid InstanceId { get; }
member this.InstanceId : Guid
Public ReadOnly Property InstanceId As Guid

Nilai Properti

Pengidentifikasi unik.

Contoh

Contoh kode berikut memeriksa WorkflowApplicationEventArgs yang diteruskan ke Unloaded handler WorkflowApplication instans InstanceId dan menampilkan alur kerja yang dibongkar.

wfApp.Unloaded = delegate(WorkflowApplicationEventArgs e)
{
    Console.WriteLine("Workflow {0} unloaded.", e.InstanceId);
};

Berlaku untuk