TimeSpanUnits Enumeration (original) (raw)
Represents the units a TimeSpan is serialized in.
Namespace: MongoDB.Bson.Serialization.Options
Assembly: MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
public enum TimeSpanUnits
Public Enumeration TimeSpanUnits
Members
| | Member name | Value | Description | | ------------- | ----- | ------------------------------ | | Ticks | 0 | Use ticks as the units. | | Days | 1 | Use days as the units. | | Hours | 2 | Use hours as the units. | | Minutes | 3 | Use minutes as the units. | | Seconds | 4 | Use seconds as the units. | | Milliseconds | 5 | Use milliseconds as the units. | | Microseconds | 6 | Use microseconds as the units. | | Nanoseconds | 7 | Use nanoseconds as the units. |
See Also