public static IDisposable Push(object state)
        {
            var temp = Current;

            Current        = new HttpLoggerScope(state);
            Current.Parent = temp;

            return(new DisposableScope());
        }
 public IDisposable BeginScope <TState>(TState state)
 {
     return(HttpLoggerScope.Push(state));
 }