Skip to content

Latest commit

 

History

History
97 lines (57 loc) · 2.15 KB

nefarius.utilities.devicemanagement.drivers.drivermeta.md

File metadata and controls

97 lines (57 loc) · 2.15 KB

DriverMeta

Namespace: Nefarius.Utilities.DeviceManagement.Drivers

Driver meta data fetched from the registry.

public sealed class DriverMeta

Inheritance ObjectDriverMeta

Properties

Gets the date of the driver.

public DateTime DriverDate { get; internal set; }

Property Value

DateTime

Gets the description the device got from the function driver.

public string DriverDescription { get; internal set; }

Property Value

String

Gets the driver version.

public Version DriverVersion { get; internal set; }

Property Value

Version

Gets the active INF name/sub-path. Typically resides in C:\Windows\INF.

public string InfPath { get; internal set; }

Property Value

String

Gets the section of the INF which applied on driver installation.

public string InfSection { get; internal set; }

Property Value

String

Gets the device ID this driver is active on.

public string MatchingDeviceId { get; internal set; }

Property Value

String

Gets the provider (manufacturer) name of the driver.

public string ProviderName { get; internal set; }

Property Value

String