DensifyRangeDateTime Method (DateTime, DateTime, Int32, DensifyDateTimeUnit) |
Creates a DensifyRange with DateTime bounds.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public static DensifyRange DateTime(
DateTime lowerBound,
DateTime upperBound,
int step,
DensifyDateTimeUnit unit
)
Public Shared Function DateTime (
lowerBound As DateTime,
upperBound As DateTime,
step As Integer,
unit As DensifyDateTimeUnit
) As DensifyRange
static member DateTime :
lowerBound : DateTime *
upperBound : DateTime *
step : int *
unit : DensifyDateTimeUnit -> DensifyRange
Parameters
- lowerBound
- Type: SystemDateTime
The lower bound. - upperBound
- Type: SystemDateTime
The upper bound. - step
- Type: SystemInt32
The step. - unit
- Type: MongoDB.DriverDensifyDateTimeUnit
The unit.
Return Value
Type:
DensifyRangeA DensifyRange with DateTime bounds.
See Also