Skip to content

Instantly share code, notes, and snippets.

@Im5tu
Created January 7, 2018 22:00
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/134309d55e7118fafa7483e1161267b3 to your computer and use it in GitHub Desktop.
Save Im5tu/134309d55e7118fafa7483e1161267b3 to your computer and use it in GitHub Desktop.
GetCorrelationId
public static Guid? GetCorrelationId()
{
var stack = GetCorrelationStack();
if(stack.Count > 0)
return stack.Peek();
return null; // TODO :: decide what you are going to do
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment