DateComponents Enumeration
IT Hit WebDAV Classes Reference
Represents components of DateTime class. Used to test if any date or time component is present.
Namespace:
ITHit.Collab
Assembly:
ITHit.Collab (in ITHit.Collab.dll) Version: 1.0.0.540 (1.0.0.540)
Syntax [FlagsAttribute]
public enum DateComponents
<FlagsAttribute>
Public Enumeration DateComponents
[FlagsAttribute]
public enum class DateComponents
[<FlagsAttribute>]
type DateComponents
Members
| Member name | Value | Description |
---|
| Year | 1 |
Year is specified.
|
| Month | 2 |
Month is specified.
|
| Day | 4 |
Day is specified.
|
| Hours | 8 |
Hours are specified.
|
| Minutes | 16 |
Minutes are specified.
|
| Seconds | 32 |
Seconds are specified.
|
| Milliseconds | 64 |
Milliseconds are specified.
|
| Date | 7 |
Date is specified.
|
| Time | 120 |
Time is specified.
|
| DateAndTime | 127 |
Date and time is specified.
|
Remarks
This class is used to mark and test date and time components stored in DateTime that must be treated as valid.
See Also