|
Fingerprint_Card
|
Class handling NT date time values. More...


Public Member Functions | |
| void | SetData (byte[] data, int index, int count) |
| Set the data from the raw values provided. | |
| byte[] | GetData () |
| Get the binary data representing this instance. | |
Static Public Member Functions | |
| static bool | IsValidValue (DateTime value) |
| Test a valuie to see if is valid and can be represented here. | |
Properties | |
| short | TagID [get] |
| Get the ID for this tagged data value. | |
| DateTime | LastModificationTime [get, set] |
| Get/set the last modification time. | |
| DateTime | CreateTime [get, set] |
| Get /set the create time | |
| DateTime | LastAccessTime [get, set] |
| Get /set the last access time. | |
Private Attributes | |
| DateTime | _lastAccessTime = DateTime.FromFileTime(0) |
| DateTime | _lastModificationTime = DateTime.FromFileTime(0) |
| DateTime | _createTime = DateTime.FromFileTime(0) |
Class handling NT date time values.
| byte[] ICSharpCode.SharpZipLib.Zip.NTTaggedData.GetData | ( | ) |
Get the binary data representing this instance.
Implements ICSharpCode.SharpZipLib.Zip.ITaggedData.
|
static |
Test a valuie to see if is valid and can be represented here.
| value | The value to test. |
NTFS filetimes are 64-bit unsigned integers, stored in Intel (least significant byte first) byte order. They determine the number of 1.0E-07 seconds (1/10th microseconds!) past WinNT "epoch", which is "01-Jan-1601 00:00:00 UTC". 28 May 60056 is the upper limit
| void ICSharpCode.SharpZipLib.Zip.NTTaggedData.SetData | ( | byte[] | data, |
| int | index, | ||
| int | count ) |
Set the data from the raw values provided.
| data | The raw data to extract values from. |
| index | The index to start extracting values from. |
| count | The number of bytes available. |
Implements ICSharpCode.SharpZipLib.Zip.ITaggedData.
|
private |
|
private |
|
private |
|
getset |
Get /set the create time
|
getset |
Get /set the last access time.
|
getset |
Get/set the last modification time.
|
get |
Get the ID for this tagged data value.
Implements ICSharpCode.SharpZipLib.Zip.ITaggedData.