TimerEventSubscriptionCollection.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 TimerEventSubscriptionCollection.
public:
property System::Object ^ SyncRoot { System::Object ^ get(); };
public object SyncRoot { get; }
member this.SyncRoot : obj
Public ReadOnly Property SyncRoot As Object
Property Value
An object used to synchronize access to the TimerEventSubscriptionCollection.
Implements
Remarks
SyncRoot returns an object, which can be used to synchronize access to the TimerEventSubscriptionCollection.
Access to the TimerEventSubscriptionCollection is synchronized; however, enumerating through a collection is intrinsically not a thread safe procedure. Even when a collection is synchronized, other threads can still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the TimerEventSubscriptionCollection during the entire enumeration by using SyncRoot or catch the exceptions resulting from changes made by other threads.