Gets or sets the strategy for determining the current date and time. The default
implementation is to use LocalDateTime which internally calls through to DateTime.Now.
DateTime.UtcNow may be used on frameworks newer than .NET 1.0 by specifying
UniversalDateTime.
Namespace: log4net.Appender
Assembly: log4net (in log4net.dll) Version: 2.0.6.0-.NET 4.0
Syntax
Property Value
Type: RollingFileAppenderIDateTimeAn implementation of the RollingFileAppenderIDateTime interface which returns the current date and time.
Remarks
Gets or sets the RollingFileAppenderIDateTime used to return the current date and time.
There are two built strategies for determining the current date and time, LocalDateTime and UniversalDateTime.
The default strategy is LocalDateTime.
See Also