System.Threading.AsyncLocalValueChangedArgs<T>
namespace System.Threading
{
public struct AsyncLocalValueChangedArgs<T>
{
public T CurrentValue { get; }
public T PreviousValue { get; }
public bool ThreadContextChanged { get; }
}
}