SiteMapNodeCollection.SyncRoot Property
.NET Framework 3.0
Gets an object that can be used to synchronize access to the collection.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
Enumerating through a SiteMapNodeCollection collection is intrinsically not a thread safe procedure. Even when a SiteMapNodeCollection is synchronized, other threads can still modify the SiteMapNodeCollection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the SiteMapNodeCollection during the entire enumeration or catch the exceptions resulting from changes that are made by other threads.
Community Additions
ADD
Show: