Returns trueTruetruetrue (True in Visual Basic), indicating that this object is thread-safe. The exception to this is enumeration, which is inherently not thread-safe. Use the SyncRoot object to lock this object for the entire duration of the enumeration.

Namespace: Iesi.Collections.Generic
Assembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)

Syntax

C#
public override sealed bool IsSynchronized { get; }
Visual Basic
Public Overrides NotOverridable ReadOnly Property IsSynchronized As Boolean
	Get
Visual C++
public:
virtual property bool IsSynchronized {
	bool get () override sealed;
}

Implements

ICollection..::..IsSynchronized

See Also