iSMBIOS

iSMBIOS is a lightweight implementation that allows us to obtain SMBIOS information. Currently only works on windows

View the Project on GitHub iAJTin/iSMBIOS

SpecificDmiBaseType.GetPropertyValue method (1 of 2)

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

Return Value

Reference to the object that represents the value of the property. Always returns the first appearance of the property.

See Also


SpecificDmiBaseType.GetPropertyValue<T> method (2 of 2)

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

Return Value

Reference to the object that represents the strongly typed value of the property. Always returns the first appearance of the property.

See Also