Click or drag to resize
SafeDictionaryTKey, TValueIsSynchronized Property
Returns true if dictionary is synchronized.

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 9.0.0
Syntax
C#
public override bool IsSynchronized { get; }

Property Value

Type: Boolean

Implements

ICollectionIsSynchronized
Remarks
Current implementation ensures thread-safety for read/write operations (read operations are safe to be performed without the need for locking). To synchronize enumeration or multiple operations use SyncRoot.
See Also