Skip to content

Instantly share code, notes, and snippets.

@explorer14
Created August 31, 2019 19:49
Embed
What would you like to do?
public class TracerBulletContext
{
public static AsyncLocal<bool> Current { get; }
= new AsyncLocal<bool>();
public static bool IsActive() => Current.Value;
public static void Establish(bool isTracerBulletActive)
{
Current.Value = isTracerBulletActive;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment