25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

TestLogger.cs 574 B

7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
1234567891011121314151617181920212223242526
  1. using Microsoft.Extensions.Logging;
  2. using System;
  3. namespace MQTTnet.Core.Tests
  4. {
  5. public class TestLogger<T> : IDisposable, ILogger<T>
  6. {
  7. public IDisposable BeginScope<TState>(TState state)
  8. {
  9. return this;
  10. }
  11. public bool IsEnabled(LogLevel logLevel)
  12. {
  13. return true;
  14. }
  15. public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
  16. {
  17. }
  18. public void Dispose()
  19. {
  20. }
  21. }
  22. }