Microsoft.Extensions.Logging.LoggerInformation
struct LoggerInformation
namespace Microsoft.Extensions.Logging
{
internal readonly struct LoggerInformation
{
public ILogger Logger { get; }
public string Category { get; }
public Type ProviderType { get; }
public bool ExternalScope { get; }
public LoggerInformation(ILoggerProvider provider, string category);
}
}