iSMBIOS is a lightweight implementation that allows us to obtain SMBIOS information. Currently only works on windows
Returns the value of specified property. Always returns the first appearance of the property. If it does not exist, returns null (Nothing in visual basic).
public object GetPropertyValue(IPropertyKey propertyKey)
parameter | description |
---|---|
propertyKey | Key to the property to obtain |
Reference to the object that represents the value of the property. Always returns the first appearance of the property.
Returns the the strongly typed value of specified property. Always returns the first appearance of the property. If it does not exist, returns null (Nothing in visual basic).
public T GetPropertyValue<T>(IPropertyKey propertyKey)
parameter | description |
---|---|
propertyKey | Key to the property to obtain |
Reference to the object that represents the strongly typed value of the property. Always returns the first appearance of the property.