BaseCollection.SyncRoot Property
Definition
Gets an object that can be used to synchronize access to the BaseCollection.
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
Property Value
An object that can be used to synchronize the BaseCollection.
Implements
- Attributes
Remarks
If, as is the case with the BaseCollection, the IsSynchronized property returns false
, then the SyncRoot property returns an object that can be used with the C# lock
keyword.