Table of Contents

Class WindowsDeviceDriverInformation

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents the driver information for a Windows device.

public class WindowsDeviceDriverInformation : BypassSection
Inheritance
WindowsDeviceDriverInformation
Inherited Members

Constructors

WindowsDeviceDriverInformation()

Initializes a new instance of the CENTREL.XIA.Configuration.Types.WindowsDeviceDriverInformation class.

public WindowsDeviceDriverInformation()

Properties

DeviceClass

Gets or sets the name of the device class - for example "MOUSE".

public string DeviceClass { get; set; }

Property Value

string

DriverDate

Gets or sets the build date of the driver as assigned by the manufacturer.

public DateTime DriverDate { get; set; }

Property Value

DateTime

DriverProviderName

Gets or sets the name of the driver manufacturer - for example "Microsoft". Note this can be different to the manufacturer of the device.

public string DriverProviderName { get; set; }

Property Value

string

DriverVersion

Gets or sets the version of the installed driver - for example "6.1.7601.17586".

public string DriverVersion { get; set; }

Property Value

string

FriendlyName

Gets or sets the friendly name of the driver - for example "Communications Port (COM2)".

public string FriendlyName { get; set; }

Property Value

string

InfName

Gets or sets the name of the .inf file that installed the device - for example "machine.inf".

public string InfName { get; set; }

Property Value

string

IsSigned

Gets or sets whether this driver is digitally signed.

public BooleanOption IsSigned { get; set; }

Property Value

BooleanOption

Signer

Gets or sets the name of the company that digitally signed this driver - for example "Microsoft Windows".

public string Signer { get; set; }

Property Value

string

Methods

ToString()

Returns the device driver information as a human readable string.

public override string ToString()

Returns

string

The device driver information as a human readable string.