ObservableCollection<T>.BlockReentrancy Metodo

Definizione

Non consente tentativi di routine rientranti per modificare la raccolta.

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

Restituisce

Oggetto IDisposable che può essere usato per eliminare l'oggetto.

Esempio

L'utilizzo tipico consiste nel eseguire il wrapping di una OnCollectionChanged chiamata all'interno di un using ambito, come nell'esempio seguente:

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

Si applica a

Vedi anche