| 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.SearchAssembly: Dse (in Dse.dll) Version: 2.4.0
Syntaxpublic 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