System.Threading.ExecutionContext
namespace System.Threading
{
public sealed class ExecutionContext : IDisposable, ISerializable
{
public static ExecutionContext Capture();
public ExecutionContext CreateCopy();
public void Dispose();
public void GetObjectData(SerializationInfo info, StreamingContext context);
public static bool IsFlowSuppressed();
public static void RestoreFlow();
public static void Run(ExecutionContext executionContext, ContextCallback callback, object state);
public static AsyncFlowControl SuppressFlow();
}
}