AlwaysSchedule Class

A IPeriodicSchedule that always returns true.

Definition

Namespace: DHI.Mike1D.BoundaryModule.PeriodicItem
Assembly: DHI.Mike1D.BoundaryModule (in DHI.Mike1D.BoundaryModule.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public class AlwaysSchedule : IPeriodicSchedule, 
	IExtensibleDataObject
Inheritance
Object    AlwaysSchedule
Implements
IPeriodicSchedule, IExtensibleDataObject

Constructors

AlwaysScheduleInitializes a new instance of the AlwaysSchedule class

Properties

Days Array of length 31 indicating which days of the month that is part of this schedule. First element (index zero) is the first of the month. If month has less than 31 days, the last elements are just ignored. Set to null to disable use of days, i.e., all days are part of this schedule.
DaysOfWeek Array of length 7 indicating which days of the week that is part of this schedule. First element (index zero) is sunday, last is saturday. Set to null to disable use of DaysOfWeek, i.e., all days of the week are part of this schedule.
ExtensionData Data from an extended DataContract not recognized here
Id ID of periodic schedule
Months Array of length 12 indicating which months of the year that is part of this schedule. First element (index zero) is January, last is December. Set to null to disable use of months, i.e., all months are part of the schedule.

Methods

Check(DateTime, Int32) Check whether this date is part of the schedule. Use if date is to be checked only against this schedule. Otherwice, precalculate date.DayOfWeek, date.Day and date.Months and used optimized version of Check.
Check(Int32, Int32, Int32) Check whether a date, defined by its dayOfWeek, dayOfMonth and month is part of this schedule. Use if dayOfWeek, dayOfMonth and month is precalculated from a date (for optimization)
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also