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: 8.2.23
Syntax
C#
public override bool IsSynchronized { get; }

Property Value

Type: Boolean

Implements

ICollectionIsSynchronized
Remarks
Current implementation ensures thread-safety for write operations. If you need synchronize reading(iterating thru collection) use SyncRoot for read/write access in all places where the r/w operations are used.
See Also