[This is preliminary documentation and is subject to change.]

When overriden in derived class gets a value indicating whether access to the ICollection is synchronized (thread safe).

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public abstract bool IsSynchronized { get; }
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public MustOverride ReadOnly Property IsSynchronized As Boolean
	Get
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
virtual property bool IsSynchronized {
	bool get () abstract;
}
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract IsSynchronized : bool
JScript
abstract function get IsSynchronized () : boolean

Return Value

true if access to the ICollection is synchronized (thread safe); otherwise, false.

Implements

ICollection..::..IsSynchronized

Remarks

Provided for compatibility with CollectionEditor

See Also