TimeIntervalT Constructor (JulianDate, JulianDate, T, Boolean, Boolean) | 
 
            Initializes a new interval with the specified start date, stop date, and data,
            also specifying whether the start and stop dates are included.
            
 
    Namespace: 
   AGI.Foundation.Time
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic TimeInterval(
	JulianDate start,
	JulianDate stop,
	T data,
	bool isStartIncluded,
	bool isStopIncluded
)
Public Sub New ( 
	start As JulianDate,
	stop As JulianDate,
	data As T,
	isStartIncluded As Boolean,
	isStopIncluded As Boolean
)
public:
TimeInterval(
	JulianDate start, 
	JulianDate stop, 
	T data, 
	bool isStartIncluded, 
	bool isStopIncluded
)
new : 
        start : JulianDate * 
        stop : JulianDate * 
        data : 'T * 
        isStartIncluded : bool * 
        isStopIncluded : bool -> TimeIntervalParameters
- start
 - Type: AGI.Foundation.TimeJulianDate
The date that starts the interval. - stop
 - Type: AGI.Foundation.TimeJulianDate
The date that stops the interval. - data
 - Type: T
The user-defined data associated with this interval. - isStartIncluded
 - Type: SystemBoolean
true if the start date is included in the interval. - isStopIncluded
 - Type: SystemBoolean
true if the stop date is included in the interval. 
See Also