Skip to content

Instantly share code, notes, and snippets.

@Im5tu
Created January 7, 2018 22:04
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 Im5tu/4b3f14b21d97dc1de948063f3b8f6bb4 to your computer and use it in GitHub Desktop.
Save Im5tu/4b3f14b21d97dc1de948063f3b8f6bb4 to your computer and use it in GitHub Desktop.
CorrelationExample
class Program
{
static void Main(string[] args)
{
using(CorrelationContext.CreateCorrelationIfNotExists())
{
Console.WriteLine(CorrelationContext.GetCorrelationId());
using(CorrelationContext.CreateCorrelationIfNotExists())
{
Console.WriteLine(CorrelationContext.GetCorrelationId());
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment