DispatcherProcessingDisabled 構造体
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
無効な状態のディスパッチャーを表し、ディスパッチャーの処理を再度有効にする手段を提供します。
public value class DispatcherProcessingDisabled : IDisposable
public struct DispatcherProcessingDisabled : IDisposable
type DispatcherProcessingDisabled = struct
interface IDisposable
Public Structure DispatcherProcessingDisabled
Implements IDisposable
- 継承
- 実装
例
次の例は、ディスパッチャー処理を無効にし、ディスパッチャー処理を再度有効にする方法を示しています。 DisableProcessing は using ステートメントで呼び出されます。 DisableProcessing は、 DispatcherProcessingDisabled using ブロックが終了したときに破棄されるオブジェクトとして使用される構造体 を 返します。 構造体を呼び出すと Dispose 、 DispatcherProcessingDisabled ディスパッチャーの処理が再度有効になります。
// The Dispose() method is called at the end of the using statement.
// Calling Dispose on the DispatcherProcessingDisabled structure,
// which is returned from the call to DisableProcessing, will
// re-enalbe Dispatcher processing.
using (Dispatcher.DisableProcessing())
{
// Do work while the dispatcher processing is disabled.
Thread.Sleep(2000);
}
' The Dispose() method is called at the end of the using statement.
' Calling Dispose on the DispatcherProcessingDisabled structure,
' which is returned from the call to DisableProcessing, will
' re-enable Dispatcher processing.
Using Dispatcher.DisableProcessing()
' Do work while the dispatcher processing is disabled.
Thread.Sleep(2000)
End Using
注釈
DisableProcessing は、 DispatcherProcessingDisabled 呼び出されたときにオブジェクトを返します。
ディスパッチャー処理を無効にすることは、無関係な再入の可能性を排除することを目的とした高度な方法です。
処理を無効にした場合の影響は次のとおりです。
CLR ロックは、メッセージを内部的にポンプしません。
DispatcherFrame オブジェクトはプッシュできません。
メッセージ処理は許可されていません。
オブジェクトをDispatcherProcessingDisabled呼び出すとDispose、ディスパッチャー処理が再度有効になります。
メソッド
Dispose() |
ディスパッチャーの処理を再度有効にします。 |
Equals(Object) |
指定した DispatcherProcessingDisabled オブジェクトがこの DispatcherProcessingDisabled オブジェクトと等しいかどうかを判断します。 |
GetHashCode() |
このインスタンスのハッシュ コードを取得します。 |
演算子
Equality(DispatcherProcessingDisabled, DispatcherProcessingDisabled) |
2 つの DispatcherProcessingDisabled オブジェクトが等しいかどうかを判断します。 |
Inequality(DispatcherProcessingDisabled, DispatcherProcessingDisabled) |
2 つの DispatcherProcessingDisabled オブジェクトが等しくないかどうかを判断します。 |