Click or drag to resize

DateRangeBound Structure

Represents a date range boundary, composed by a Date and a precision.

Namespace:  Dse.Search
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public struct DateRangeBound : IEquatable<DateRangeBound>

The DateRangeBound type exposes the following members.

Constructors
  NameDescription
Public methodDateRangeBound
Creates a new instance of DateRangeBound.
Top
Properties
  NameDescription
Public propertyPrecision
The precision portion of the boundary.
Public propertyTimestamp
The timestamp portion of the boundary.
Top
Methods
  NameDescription
Public methodEquals(Object)
Indicates whether this instance and a specified object are equal.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(DateRangeBound)
Returns true if the value of this instance and other are the same.
Public methodGetHashCode
Returns the hash code for this instance.
(Overrides ValueTypeGetHashCode.)
Public methodStatic memberParse
Returns the DateRangeBound representation of a given string.

String representations of dates are always expressed in Coordinated Universal Time(UTC)

Public methodToString
Returns the string representation of the instance.
(Overrides ValueTypeToString.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Compares value equality of 2 DateRangeBound instances.
Public operatorStatic memberInequality
Compares value inequality of 2 DateRangeBound instances.
Top
Fields
  NameDescription
Public fieldStatic memberUnbounded
The unbounded DateRangeBound instance. Unbounded bounds are syntactically represented by a * (star) sign.
Top
Remarks
DateRangeBound instances are immutable and thread-safe.
See Also