ObservableCollection<T>.BlockReentrancy 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
不允許變更這個集合的可重新進入嘗試。
protected:
IDisposable ^ BlockReentrancy();
protected IDisposable BlockReentrancy ();
member this.BlockReentrancy : unit -> IDisposable
Protected Function BlockReentrancy () As IDisposable
傳回
IDisposable 物件,可用來處置物件。
範例
典型的用法是在範圍內包裝 OnCollectionChanged 呼叫 using
,如下列範例所示:
using (BlockReentrancy())
{
// OnCollectionChanged call
}
Using BlockReentrancy()
' OnCollectionChanged call
End Using