Back to Devexpress

TreeListNodes.IsSynchronized Property

windowsforms-devexpress-dot-xtratreelist-dot-nodes-dot-treelistnodes-b4c3d597.md

latest1.9 KB
Original Source

TreeListNodes.IsSynchronized Property

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

Namespace : DevExpress.XtraTreeList.Nodes

Assembly : DevExpress.XtraTreeList.v25.2.dll

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

Declaration

csharp
public bool IsSynchronized { get; }
vb
Public ReadOnly Property IsSynchronized As Boolean

Property Value

TypeDescription
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

SyncRoot

TreeListNodes Class

TreeListNodes Members

DevExpress.XtraTreeList.Nodes Namespace