Пример #1
0
        /// <inheritdoc />
        public IDisposable BeginScope <TState>(TState state)
        {
            if (state == null)
            {
                throw new ArgumentNullException(nameof(state));
            }

            return(MemoryLogScope.Push(Name, state));
        }
Пример #2
0
        public static IDisposable Push(string name, object state)
        {
            var temp = Current;

            Current        = new MemoryLogScope(name, state);
            Current.Parent = temp;

            return(new DisposableScope());
        }