SiteMapNodeCollection.SyncRoot Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an object that can be used to synchronize access to the collection.
public:
virtual property System::Object ^ SyncRoot { System::Object ^ get(); };
public virtual object SyncRoot { get; }
member this.SyncRoot : obj
Public Overridable ReadOnly Property SyncRoot As Object
Property Value
An object that can be used to synchronize access to the SiteMapNodeCollection.
Remarks
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.