Interface IDependencySingleton
Represents an abstract base class for creating thread-safe singleton instances with optional dependency injection support. This pattern can be utilized in both dependency injection (DI) and non-DI scenarios. Example usage:
Namespace: Coree.NETStandard.Abstractions.DependencySingleton
Assembly: Coree.NETStandard.dll
Syntax
public interface IDependencySingleton
Methods
| Edit this page View SourceSetLogLevelFilter(LogLevel)
Sets the minimum log level filter for the application. This level acts as a filter for the logs that are emitted. Logs below this level will not be emitted. Default is Information
Declaration
void SetLogLevelFilter(LogLevel logLevel = LogLevel.Information)
Parameters
Type | Name | Description |
---|---|---|
LogLevel | logLevel | The log level to set as the minimum threshold for logging. |