Click or drag to resize

DateRange Constructor (DateRangeBound, DateRangeBound)

Creates a new instance of DateRange using a lower bound and an upper bound.

Consider using Parse(String) to create instances more easily.

Namespace:  Dse.Search
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public DateRange(
	DateRangeBound lowerBound,
	DateRangeBound upperBound
)

Parameters

lowerBound
Type: Dse.SearchDateRangeBound
A value representing the range lower bound, composed by a DateTimeOffset and a precision. Use Unbounded for an open lower bound.
upperBound
Type: Dse.SearchDateRangeBound
A value representing the range upper bound, composed by a DateTimeOffset and a precision. Use Unbounded for an open higher bound.
See Also