aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.UnitTesting/AdvancedInstaller/DemoProject/Files/File2.txt
blob: c717c6dee139c09618c44aeda0f680617d51dcc8 (plain) <
File2
1
n class="p">; namespace Tango.SystemInfo { class Win32_NetworkAdapter : IWMI { Connection WMIConnection; public Win32_NetworkAdapter(Connection WMIConnection) { this.WMIConnection = WMIConnection; } public IList<SystemObject> GetHardwareInfoList() { string className = System.Text.RegularExpressions.Regex.Match( this.GetType().ToString(), "Win32_.*").Value; return WMIReader.GetPropertyValues(WMIConnection, "SELECT * FROM " + className, className); } } }