DispatcherProcessingDisabled Structure
Represents the Dispatcher when it is in a disable state and provides a means to re-enable dispatcher processing.
Assembly: WindowsBase (in WindowsBase.dll)
The DispatcherProcessingDisabled type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Dispose | Re-enables dispatcher processing. |
![]() | Equals | Determines whether the specified DispatcherProcessingDisabled object is equal to this DispatcherProcessingDisabled object. (Overrides ValueType.Equals(Object).) |
![]() | GetHashCode | Gets a hash code for this instance. (Overrides ValueType.GetHashCode().) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | ToString | Returns the fully qualified type name of this instance. (Inherited from ValueType.) |
| Name | Description | |
|---|---|---|
![]() ![]() | Equality | Determines whether two DispatcherProcessingDisabled objects are equal. |
![]() ![]() | Inequality | Determines whether two DispatcherProcessingDisabled objects are not equal. |
DisableProcessing returns a DispatcherProcessingDisabled object when it is called.
Disabling dispatcher processing is an advanced method that is intended to eliminate the chance of unrelated reentrancy.
The effects of disabling processing are as follows:
CLR locks will not pump messages internally.
DispatcherFrame objects are not allowed to be pushed.
Message processing is not permitted.
Calling Dispose on the DispatcherProcessingDisabled object will re-enable dispatcher processing.
The following example shows how to disable dispatcher processing and re-enable dispatcher processing. DisableProcessing is called in a using statement. DisableProcessing returns a DispatcherProcessingDisabled structure which is used as the object to be disposed when the using block finishes. Calling Dispose on the DispatcherProcessingDisabled structure re-enables dispatcher processing.
// 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); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
