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

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#
[ObsoleteAttribute("Although this is part of IList this is part of neither IList(Of T)  nor List(Of T)")]
[BrowsableAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public override sealed bool IsSynchronized { get; }
Visual Basic
<ObsoleteAttribute("Although this is part of IList this is part of neither IList(Of T)  nor List(Of T)")> _
<BrowsableAttribute(False)> _
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Overrides NotOverridable ReadOnly Property IsSynchronized As Boolean
	Get
Visual C++
[ObsoleteAttribute(L"Although this is part of IList this is part of neither IList(Of T)  nor List(Of T)")]
[BrowsableAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
virtual property bool IsSynchronized {
	bool get () override sealed;
}
F#
[<ObsoleteAttribute("Although this is part of IList this is part of neither IList(Of T)  nor List(Of T)")>]
[<BrowsableAttribute(false)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract IsSynchronized : bool
[<ObsoleteAttribute("Although this is part of IList this is part of neither IList(Of T)  nor List(Of T)")>]
[<BrowsableAttribute(false)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
override IsSynchronized : bool
JScript
override final function get IsSynchronized () : boolean

Return Value

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

Remarks

Provided for compatibility with CollectionEditor

See Also