DataViewSettingCollection.SyncRoot 属性

定义

获取可用于同步对 DataViewSettingCollection 的访问的对象。

public:
 property System::Object ^ SyncRoot { System::Object ^ get(); };
[System.ComponentModel.Browsable(false)]
public object SyncRoot { get; }
[<System.ComponentModel.Browsable(false)>]
member this.SyncRoot : obj
Public ReadOnly Property SyncRoot As Object

属性值

用于同步对 DataViewSettingCollection 的访问的对象。

实现

属性

注解

派生类可以使用 属性提供 的DataViewSettingCollectionSyncRoot同步版本。

程序代码必须始终对 SyncRootDataViewSettingCollection执行同步操作,而不是直接对 DataViewSettingCollection执行 。 这可以保证派生自其他对象的集合的正确操作。 具体而言,它与可能同时修改 DataViewSettingCollection的其他线程保持正确的同步。

适用于