DesignerAutoFormatCollection.SyncRoot Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient un objet qui peut être utilisé pour synchroniser l’accès à l’objet DesignerAutoFormatCollection.
public:
property System::Object ^ SyncRoot { System::Object ^ get(); };
public object SyncRoot { get; }
member this.SyncRoot : obj
Public ReadOnly Property SyncRoot As Object
Valeur de propriété
Objet qui peut être utilisé pour synchroniser l'accès à DesignerAutoFormatCollection.
Implémente
Remarques
L’énumération via une collection n’est pas intrinsèquement une procédure thread-safe. Même lorsqu’une collection est synchronisée, d’autres threads peuvent toujours modifier la collection. Cela entraîne des exceptions pendant l’énumération.
Verrouillez la collection à l’aide de la SyncRoot méthode pendant toute l’énumération pour garantir la sécurité des threads. Pour plus d’informations sur le verrouillage des collections pour l’accès thread-safe, consultez ICollection.SyncRoot.