ILogger<TCategoryName> Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A generic interface for logging where the category name is derived from the specified
TCategoryName
type name.
Generally used to enable activation of a named ILogger from dependency injection.
generic <typename TCategoryName>
public interface class ILogger : Microsoft::Extensions::Logging::ILogger
public interface ILogger<out TCategoryName> : Microsoft.Extensions.Logging.ILogger
type ILogger<'CategoryName> = interface
interface ILogger
Public Interface ILogger(Of Out TCategoryName)
Implements ILogger
Type Parameters
- TCategoryName
The type whose name is used for the logger category name.
This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.- Derived
- Implements
Methods
BeginScope<TState>(TState) |
Begins a logical operation scope. (Inherited from ILogger) |
IsEnabled(LogLevel) |
Checks if the given |
Log<TState>(LogLevel, EventId, TState, Exception, Func<TState,Exception,String>) |
Writes a log entry. (Inherited from ILogger) |
Extension Methods
Applies to
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.