Includes&Samples |
CIM_BIOSElement, ROOT\cimv2, c# samplesClass | Childs (1) | Methods | Properties (17) | Qualifiers (4) | Instances (1) | Namespaces (4)Samples: VB Script | C# | VB.Net | Search on:Microsoft c# Code samplesThe class CIM_BIOSElement is abstract and serves only as a base for new classes. You cannot create instances of abstract class, see derived classes. WMI query - sample windows WQL with C#, BuildNumber property of CIM_BIOSElementShort C# sample code to get the abstract class CIM_BIOSElement and its properties.
//https://wutils.com/wmi/ //Project -> Add reference -> System.Management //using System.Management; //set the class name and namespace string NamespacePath = "\\\\.\\ROOT\\cimv2"; string ClassName = "CIM_BIOSElement"; //Create ManagementClass ManagementClass mClass = new ManagementClass(NamespacePath + ":" + ClassName); // List the properties in the CIM_BIOSElement class PropertyDataCollection lproperties = mClass.Properties; // display the properties Console.WriteLine(string.Format("Property Names in {0}: ",ClassName)); foreach (PropertyData property in lproperties) { Console.WriteLine("name: {0}, Origin: {1}", property.Name, property.Origin ); } WMI query - list of class instancesList of all instances of CIM_BIOSElement class in C#.
//https://wutils.com/wmi/ //Project -> Add reference -> System.Management //using System.Management; //set the class name and namespace string NamespacePath = "\\\\.\\ROOT\\cimv2"; string ClassName = "CIM_BIOSElement"; //Create ManagementClass ManagementClass oClass = new ManagementClass(NamespacePath + ":" + ClassName); //Get all instances of the class and enumerate them foreach (ManagementObject oObject in oClass.GetInstances()) { //access a property of the Management object Console.WriteLine("BuildNumber : {0}", oObject["BuildNumber"]); } |