RollingFileAppender NextCheckDate Method Apache log4net™ SDK Documentation
Get the start time of the next window for the current rollpoint

Namespace: log4net.Appender
Assembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax

protected DateTime NextCheckDate(
	DateTime currentDateTime,
	RollingFileAppender..::..RollPoint rollPoint
)

Return Value

Type: OnlineDateTime
the 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