DateBuilder DateOf Method (Int32, Int32, Int32, Int32, Int32)Quartz.NET API Documentation
Get a DateTimeOffset object that represents the given time, on the given date.

Namespace: Quartz
Assembly: Quartz (in Quartz.dll) Version: 2.2.1.400
Syntax

public static DateTimeOffset DateOf(
	int hour,
	int minute,
	int second,
	int dayOfMonth,
	int month
)

Parameters

hour
Type: System Int32
The value (0-23) to give the hours field of the date
minute
Type: System Int32
The value (0-59) to give the minutes field of the date
second
Type: System Int32
The value (0-59) to give the seconds field of the date
dayOfMonth
Type: System Int32
The value (1-31) to give the day of month field of the date
month
Type: System Int32
The value (1-12) to give the month field of the date

Return Value

Type: DateTimeOffset
the new date
See Also