BaseCollection::IsSynchronized Property
.NET Framework (current version)
Gets a value indicating whether access to the ICollection is synchronized.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property bool IsSynchronized { virtual bool get() sealed; }
Implements
ICollection::IsSynchronizedIf a collection is thread safe, the IsSynchronized property returns true, and the programmer does not have to do anything to keep the collection thread safe.
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. Use the static Enter and Exit methods of the Monitor class to manually lock and unlock the synchronization object.
.NET Framework
Available since 1.1
Available since 1.1
Show: