AsyncFlowControl Struct

Definition

Provides the functionality to restore the migration, or flow, of the execution context between threads.

public value class AsyncFlowControl : IDisposable
public value class AsyncFlowControl : IDisposable, IEquatable<System::Threading::AsyncFlowControl>
public struct AsyncFlowControl : IDisposable
public struct AsyncFlowControl : IDisposable, IEquatable<System.Threading.AsyncFlowControl>
type AsyncFlowControl = struct
    interface IDisposable
Public Structure AsyncFlowControl
Implements IDisposable
Public Structure AsyncFlowControl
Implements IDisposable, IEquatable(Of AsyncFlowControl)
Inheritance
AsyncFlowControl
Implements

Remarks

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.

Methods

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.

GetHashCode()

Gets a hash code for the current AsyncFlowControl structure.

Undo()

Restores the flow of the execution context between threads.

Operators

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.

Explicit Interface Implementations

IDisposable.Dispose()

This API supports the product infrastructure and is not intended to be used directly from your code.

Releases all resources used by the AsyncFlowControl.

Applies to