C# 클래스 ICSharpCode.SharpZipLib.Zip.NTTaggedData

Class handling NT date time values.
상속: ITaggedData
파일 보기 프로젝트 열기: fanfeilong/exceltk 1 사용 예제들

공개 메소드들

메소드 설명
GetData ( ) : byte[]

Get the binary data representing this instance.

IsValidValue ( System.DateTime value ) : bool

Test a valuie to see if is valid and can be represented here.

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

SetData ( byte data, int index, int count ) : void

Set the data from the raw values provided.

메소드 상세

GetData() 공개 메소드

Get the binary data representing this instance.
public GetData ( ) : byte[]
리턴 byte[]

IsValidValue() 공개 정적인 메소드

Test a valuie to see if is valid and can be represented here.
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
public static IsValidValue ( System.DateTime value ) : bool
value System.DateTime The value to test.
리턴 bool

SetData() 공개 메소드

Set the data from the raw values provided.
public SetData ( byte data, int index, int count ) : void
data byte The raw data to extract values from.
index int The index to start extracting values from.
count int The number of bytes available.
리턴 void