1 instantiation of Scope
Microsoft.Extensions.Telemetry (1)
Logging\Import\LoggerFactoryScopeProvider.cs (1)
113var newScope = new Scope(this, state, parent);
7 references to Scope
Microsoft.Extensions.Telemetry (7)
Logging\Import\LoggerFactoryScopeProvider.cs (7)
37private readonly AsyncLocal<Scope?> _currentScope = new AsyncLocal<Scope?>(); 44void Report(Scope? current) 112Scope? parent = _currentScope.Value; 113var newScope = new Scope(this, state, parent); 124internal Scope(LoggerFactoryScopeProvider provider, object? state, Scope? parent) 131public Scope? Parent { get; }