Click or drag to resize

PeriodicSpecialDay.Check Method (DateTime, Int32, Int32, Int32)

Check whether a date matches this special day. A usage is returned if the date matches the specialday. Optimized version, when the date.Month and date.Day is precalculated.

Namespace:  DHI.Mike1D.BoundaryModule.PeriodicItem
Assembly:  DHI.Mike1D.BoundaryModule (in DHI.Mike1D.BoundaryModule.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax
public bool Check(
	DateTime date,
	int dateMonth,
	int dateDay,
	out int usage
)

Parameters

date
Type: System.DateTime
Date to check
dateMonth
Type: System.Int32
Date to check, must be date.Month, 1-12
dateDay
Type: System.Int32
Date to check, must be date.Day, 1-31
usage
Type: System.Int32
Outputs the usage of this special day

Return Value

Type: Boolean
true if the date matches.

Implements

IPeriodicSpecialDay.Check(DateTime, Int32, Int32, Int32)
See Also