ObservableCollection<T>.BlockReentrancy Método

Definição

Não permite tentativas reentrantes de alterar essa coleção.

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

Retornos

Um objeto IDisposable que pode ser usado para descartar o objeto.

Exemplos

O uso típico é encapsular uma OnCollectionChanged chamada dentro de um using escopo, como no exemplo a seguir:

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

Aplica-se a

Confira também