1 instantiation of WriteContext
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Logging\TestLogger.cs (1)
45_sink.Write(new WriteContext()
13 references to WriteContext
Aspire.Dashboard.Components.Tests (13)
tests\Shared\Logging\ITestSink.cs (4)
10event Action<WriteContext> MessageLogged; 14Func<WriteContext, bool>? WriteEnabled { get; set; } 20IProducerConsumerCollection<WriteContext> Writes { get; set; } 22void Write(WriteContext context);
tests\Shared\Logging\TestSink.cs (9)
11private ConcurrentQueue<WriteContext> _writes; 14Func<WriteContext, bool>? writeEnabled = null, 21_writes = new ConcurrentQueue<WriteContext>(); 24public Func<WriteContext, bool>? WriteEnabled { get; set; } 30public IProducerConsumerCollection<WriteContext> Writes { get => _writes; set => _writes = new ConcurrentQueue<WriteContext>(value); } 32public event Action<WriteContext>? MessageLogged; 36public void Write(WriteContext context) 54public static bool EnableWithTypeName<T>(WriteContext context)