SynchronizationScopeActivity.SynchronizationHandles Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan atau mengatur kumpulan string yang mewakili handel yang menentukan perilaku sinkronisasi ini SynchronizationScopeActivity. Ketika dua aktivitas atau lebih SynchronizationScopeActivity berbagi handel sinkronisasi, mereka menjalankan secara serial; tidak ada eksekusi interleaved dari aktivitas anak di dalamnya.
public:
property System::Collections::Generic::ICollection<System::String ^> ^ SynchronizationHandles { System::Collections::Generic::ICollection<System::String ^> ^ get(); void set(System::Collections::Generic::ICollection<System::String ^> ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Workflow.ComponentModel.SynchronizationHandlesTypeConverter))]
public System.Collections.Generic.ICollection<string> SynchronizationHandles { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Workflow.ComponentModel.SynchronizationHandlesTypeConverter))>]
member this.SynchronizationHandles : System.Collections.Generic.ICollection<string> with get, set
Public Property SynchronizationHandles As ICollection(Of String)
Nilai Properti
String multibaris yang berisi handel sinkronisasi untuk instans ini.
- Atribut
Contoh
Contoh berikut menunjukkan pengaturan properti SynchronizationHandles. Contoh ini berasal dari sampel SDK Nested Exception Handlers. Untuk informasi selengkapnya, lihat Sampel Penangan Pengecualian Berlapis.
this.synchronizationScopeActivity.Activities.Add(this.throwsException);
this.synchronizationScopeActivity.Name = "synchronizationScopeActivity";
this.synchronizationScopeActivity.SynchronizationHandles = null;
Me.synchronizationScopeActivity.Activities.Add(Me.throwsException)
Me.synchronizationScopeActivity.Name = "synchronizationScopeActivity"
Me.synchronizationScopeActivity.SynchronizationHandles = Nothing