AsyncFlowControl Structure
Provides the functionality to restore the migration, or flow, of the execution context between threads.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() | Dispose() | Releases all resources used by the current instance of the AsyncFlowControl class. |
![]() | Equals(AsyncFlowControl) | Determines whether the specified AsyncFlowControl structure is equal to the current AsyncFlowControl structure. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current AsyncFlowControl structure. (Overrides ValueType::Equals(Object^).) |
![]() | GetHashCode() | Gets a hash code for the current AsyncFlowControl structure.(Overrides ValueType::GetHashCode().) |
![]() | GetType() | |
![]() | ToString() | Returns the fully qualified type name of this instance.(Inherited from ValueType.) |
![]() | Undo() | Restores the flow of the execution context between threads. |
| Name | Description | |
|---|---|---|
![]() ![]() | Equality(AsyncFlowControl, AsyncFlowControl) | Compares two AsyncFlowControl structures to determine whether they are equal. |
![]() ![]() | Inequality(AsyncFlowControl, AsyncFlowControl) | Compares two AsyncFlowControl structures to determine whether they are not equal. |
An execution context contains all execution-related information for a logical thread. The flow of the execution context to other threads can be prevented by using the ExecutionContext::SuppressFlow method, which returns an AsyncFlowControl structure. The Undo method of the returned AsyncFlowControl structure can be used to undo the flow suppression. The AsyncFlowControl structure must be used on the same thread on which it was created.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


