ObservableCollection<T>.BlockReentrancy Méthode

Définition

Rejette les tentatives réentrantes ayant pour but de modifier cette collection.

protected:
 IDisposable ^ BlockReentrancy();
protected IDisposable BlockReentrancy ();
member this.BlockReentrancy : unit -> IDisposable
Protected Function BlockReentrancy () As IDisposable

Retours

Objet IDisposable qui peut être utilisé pour supprimer l’objet.

Exemples

L’utilisation classique consiste à encapsuler un OnCollectionChanged appel dans une using étendue, comme dans l’exemple suivant :

using (BlockReentrancy())
{
    // OnCollectionChanged call
}
Using BlockReentrancy()
    ' OnCollectionChanged call
End Using

S’applique à

Voir aussi