BaseCollection.IsSynchronized Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether access to the ICollection is synchronized.
public:
property bool IsSynchronized { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool IsSynchronized { get; }
[<System.ComponentModel.Browsable(false)>]
member this.IsSynchronized : bool
Public ReadOnly Property IsSynchronized As Boolean
Property Value
This property always returns false
.
Implements
- Attributes
Remarks
If 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.