1 instantiation of BeginScopeContext
Microsoft.AspNetCore.InternalTesting (1)
Logging\TestLogger.cs (1)
33_sink.Begin(new BeginScopeContext()
14 references to BeginScopeContext
Microsoft.AspNetCore.InternalTesting (13)
Logging\ITestSink.cs (4)
13event Action<BeginScopeContext> ScopeStarted; 17Func<BeginScopeContext, bool> BeginEnabled { get; set; } 19IProducerConsumerCollection<BeginScopeContext> Scopes { get; set; } 25void Begin(BeginScopeContext context);
Logging\TestSink.cs (9)
11private ConcurrentQueue<BeginScopeContext> _scopes; 16Func<BeginScopeContext, bool> beginEnabled = null) 21_scopes = new ConcurrentQueue<BeginScopeContext>(); 27public Func<BeginScopeContext, bool> BeginEnabled { get; set; } 29public IProducerConsumerCollection<BeginScopeContext> Scopes { get => _scopes; set => _scopes = new ConcurrentQueue<BeginScopeContext>(value); } 35public event Action<BeginScopeContext> ScopeStarted; 46public void Begin(BeginScopeContext context) 60public static bool EnableWithTypeName<T>(BeginScopeContext context)
Microsoft.AspNetCore.InternalTesting.Tests (1)
LoggedTestXunitTests.cs (1)
146BeginScopeContext context = null;