TestimoX

API Reference

Class

Bios

Namespace ComputerX.Bios
Assembly ComputerX
Modifiers static

Convenience facade to retrieve BIOS information for a computer.

Inheritance

  • Object
  • Bios

Methods

public static BiosInfo Get(String computer = null) #
Returns: BiosInfo

Queries WMI for BIOS information on the target computer.

Parameters

computer System.String = null optionalposition: 0
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 optionalposition: 0
Hostname; null means the local machine.
timeout System.Nullable{System.TimeSpan} = null optionalposition: 1
Optional per-query timeout; defaults to 8 seconds.
ct System.Threading.CancellationToken = null optionalposition: 2
Cancellation token.