TimerEventSubscriptionCollection.IsSynchronized Property

Definition

Gets a value that indicates whether the access to the TimerEventSubscriptionCollection is synchronized (thread safe).

public:
 property bool IsSynchronized { bool get(); };
public bool IsSynchronized { get; }
member this.IsSynchronized : bool
Public ReadOnly Property IsSynchronized As Boolean

Property Value

Always returns true indicating that access to the TimerEventSubscriptionCollection is synchronized (thread safe).

Implements

Remarks

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 collection during the entire enumeration or catch the exceptions resulting from changes made by other threads. SyncRoot returns an object, which can be used to synchronize access to the TimerEventSubscriptionCollection.

Applies to