Hi tried to get using by writing this code:
ManagementObjectSearcher
mos = new ManagementObjectSearcher("select * from Win32_BIOS");
foreach
(ManagementObject mo in mos.Get())
{
Type
mytype = mo.GetType();
MethodInfo[]
mi = mytype.GetMethods();
foreach
(MethodInfo m in
mi)
{
listBox2.Items.Add(m.Name);
}
break;
}
but it doesn't works,
it gives method of management object.
you can see all the method here,"
http://msdn.microsoft.com/en-us/library/aa394372(VS.85).aspx