1 instantiation of Scope
Microsoft.Extensions.Logging.Abstractions (1)
LoggerExternalScopeProvider.cs (1)
41
var newScope = new
Scope
(this, state, parent);
7 references to Scope
Microsoft.Extensions.Logging.Abstractions (7)
LoggerExternalScopeProvider.cs (7)
14
private readonly AsyncLocal<
Scope
?> _currentScope = new AsyncLocal<
Scope
?>();
25
void Report(
Scope
? current)
40
Scope
? parent = _currentScope.Value;
41
var
newScope = new Scope(this, state, parent);
52
internal Scope(LoggerExternalScopeProvider provider, object? state,
Scope
? parent)
59
public
Scope
? Parent { get; }