1 instantiation of Scope
Microsoft.Extensions.Logging (1)
LoggerFactoryScopeProvider.cs (1)
94var newScope = new Scope(this, state, parent);
7 references to Scope
Microsoft.Extensions.Logging (7)
LoggerFactoryScopeProvider.cs (7)
18private readonly AsyncLocal<Scope?> _currentScope = new AsyncLocal<Scope?>(); 25void Report(Scope? current) 93Scope? parent = _currentScope.Value; 94var newScope = new Scope(this, state, parent); 105internal Scope(LoggerFactoryScopeProvider provider, object? state, Scope? parent) 112public Scope? Parent { get; }