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:  Cassandra.DataStax.Search
Assembly:  Cassandra (in Cassandra.dll) Version: 3.13.0
Syntax
C#
public DateRange(
	DateRangeBound lowerBound,
	DateRangeBound upperBound
)

Parameters

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