Skip to content

Instantly share code, notes, and snippets.

@explorer14
Created August 31, 2019 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save explorer14/7dca064f35a212463be7e8c50bd8c0cc to your computer and use it in GitHub Desktop.
Save explorer14/7dca064f35a212463be7e8c50bd8c0cc to your computer and use it in GitHub Desktop.
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