Noda Time
GetZoneIntervals Method (start, end)
NamespacesNodaTimeDateTimeZoneGetZoneIntervals(Instant, Instant)

[This is preliminary documentation and is subject to change.]

Returns all the zone intervals which occur for any instant in the interval [start, end).
Declaration Syntax
C#Visual BasicVisual C++
public IEnumerable<ZoneInterval> GetZoneIntervals(
	Instant start,
	Instant end
)
Public Function GetZoneIntervals ( _
	start As Instant, _
	end As Instant _
) As IEnumerable(Of ZoneInterval)
public:
IEnumerable<ZoneInterval^>^ GetZoneIntervals(
	Instant start, 
	Instant end
)
Parameters
start (Instant)
Inclusive start point of the interval for which to retrieve zone intervals.
end (Instant)
Exclusive end point of the interval for which to retrieve zone intervals.
Return Value
A sequence of zone intervals covering the given interval.
Remarks

This method is simply a convenience method for calling GetZoneIntervals(Interval) without explicitly constructing the interval beforehand.

Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionend is earlier than start.
See Also

Assembly: NodaTime (Module: NodaTime.dll) Version: 1.2.0.0 (1.2.0)