OidCollection.SyncRoot Property

Definition

Gets an object that can be used to synchronize access to the OidCollection object.

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 that can be used to synchronize access to the OidCollection object.

Implements

Remarks

OidCollection is not thread safe. Derived classes can provide their own synchronized version of the OidCollection class using this property. The synchronizing code must perform operations on the SyncRoot property of the OidCollection object, not directly on the object itself. This ensures proper operation of collections that are derived from other objects. Specifically, it maintains proper synchronization with other threads that might simultaneously be modifying the OidCollection object.

Applies to