API Reference
Class
Bios
Convenience facade to retrieve BIOS information for a computer.
Inheritance
- Object
- Bios
Methods
public static BiosInfo Get(String computer = null) #Returns:
BiosInfoQueries WMI for BIOS information on the target computer.
Parameters
- computer System.String = null
- Hostname; null means the local machine.
public static Task<BiosInfo> GetAsync(String computer = null, Nullable<TimeSpan> timeout = null, CancellationToken ct = null) #Returns:
Task<BiosInfo>Asynchronously queries WMI for BIOS information on the target computer.
Parameters
- computer System.String = null
- Hostname; null means the local machine.
- timeout System.Nullable{System.TimeSpan} = null
- Optional per-query timeout; defaults to 8 seconds.
- ct System.Threading.CancellationToken = null
- Cancellation token.
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object