Click here to Skip to main content
15,879,326 members
Articles / Programming Languages / C#

How To: (Almost) Everything In WMI via C# - Part 3: Hardware

Rate me:
Please Sign up or sign in to vote.
4.67/5 (44 votes)
3 Apr 2007CPOL3 min read 295.9K   12.7K   145  
An Extensible Framework for enumerating WMI Class Properties
using System;
using System.Collections.Generic;
using System.Text;

namespace baileysoft.Wmi
{
    class Win32_SoundDevice : IWMI 
    {
             Connection WMIConnection;

        public Win32_SoundDevice(Connection WMIConnection)
        {
            this.WMIConnection = WMIConnection;
        }
        public IList<string> GetPropertyValues()
        {
            string className = System.Text.RegularExpressions.Regex.Match(
                                  this.GetType().ToString(), "Win32_.*").Value;

            return WMIReader.GetPropertyValues(WMIConnection,
                                               "SELECT * FROM " + className,
                                               className);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
I'm a professional .NET software developer and proud military veteran. I've been in the software business for 20+ years now and if there's one lesson I have learned over the years, its that in this industry you have to be prepared to be humbled from time to time and never stop learning!

Comments and Discussions