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

DmiStructureCollection.GetProperties method

Returns a Result that contains the result of the operation.

public QueryPropertyCollectionResult GetProperties(IPropertyKey propertyKey)
parameter description
propertyKey Key to the property to obtain

Return Value

A QueryPropertyCollectionResult reference that contains the result of the operation, to check if the operation is correct, the Success property will be true and the Result property will contain the Result; Otherwise, the the Success property will be false and the Errors property will contain the errors associated with the operation, if they have been filled in.

The type of the Result property is IEnumerable where T is PropertyItem.

See Also