Get the start time of the next window for the current rollpoint
Namespace: log4net.AppenderAssembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax
Parameters
- currentDateTime
- Type: System DateTime
the current date
- rollPoint
- Type: log4net.Appender RollingFileAppender RollPoint
the type of roll point we are working with
Return Value
Type: DateTimethe start time for the next roll point an interval after the currentDateTime date
Remarks
Returns the date of the next roll point after the currentDateTime date passed to the method.
The basic strategy is to subtract the time parts that are less significant than the rollpoint from the current time. This should roll the time back to the start of the time window for the current rollpoint. Then we add 1 window worth of time and get the start time of the next window for the rollpoint.
See Also