Skip to main content

TreeListNodes.IsSynchronized Property

Gets a value indicating whether access to the nodes collection is synchronized (thread-safe).

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

public bool IsSynchronized { get; }

Property Value

Type Description
Boolean

true if access to the nodes collection is synchronized (thread-safe); otherwise false.

Remarks

Enumerating through a collection is intrinsically not a thread-safe procedure. Even when a collection is synchronized, other threads could still modify the collection, which causes the enumerator to raise an exception. To guarantee thread safety during enumeration, you can either lock the collection during the entire enumeration or catch the exceptions resulting from changes made by other threads.

Use the TreeListNodes.SyncRoot property to lock the collection.

See Also