C# Class IPFilter.Setup.CustomActions.IO.FileTime

Datei anzeigen Open project: DavidMoore/ipfilter

Public Properties

Property Type Description
FileTimeHigh uint
FileTimeLow uint

Public Methods

Method Description
FileTime ( long fileTime ) : System

Initializes a new instance of the FileTime struct.

ToDateTime ( ) : System.DateTime

Converts this FileTime to a DateTime.

ToTicks ( ) : long

Converts the FileTimeLow and FileTimeHigh values to the number of 100-nanosecond intervals since January 1, 1601 (UTC).

Method Details

FileTime() public method

Initializes a new instance of the FileTime struct.
public FileTime ( long fileTime ) : System
fileTime long The file time.
return System

ToDateTime() public method

Converts this FileTime to a DateTime.
public ToDateTime ( ) : System.DateTime
return System.DateTime

ToTicks() public method

Converts the FileTimeLow and FileTimeHigh values to the number of 100-nanosecond intervals since January 1, 1601 (UTC).
public ToTicks ( ) : long
return long

Property Details

FileTimeHigh public_oe property

The high-order part of the file time.
public uint FileTimeHigh
return uint

FileTimeLow public_oe property

The low-order part of the file time.
public uint FileTimeLow
return uint