API Reference
Class
BaseBoard
Convenience facade to retrieve motherboard/baseboard information for a computer.
Inheritance
- Object
- BaseBoard
Methods
public static BaseBoardInfo Get(String computer = null) #Returns:
BaseBoardInfoQueries WMI for baseboard information on the target computer.
Parameters
- computer System.String = null
- Hostname; null means the local machine.
Returns
Basic baseboard identification (manufacturer, product, serial).
public static Task<BaseBoardInfo> GetAsync(String computer = null, Nullable<TimeSpan> timeout = null, CancellationToken ct = null) #Returns:
Task<BaseBoardInfo>Asynchronously queries WMI for baseboard 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