获取与进程关联的 .NET 类

发布于 2024-08-16 05:24:07 字数 676 浏览 4 评论 0原文

作为我正在创建的 WMI Coupled 提供程序的一部分,我需要编写一个实例枚举器。 我的代码如下。我需要做的是获取与进程关联的类实例。有什么想法吗?

    static public WMIProviderSample GetInstance([ManagementName("ID")] int processId)
    {
        try
        {
            Process[] processes = Process.GetProcessesByName("WMI Provider Sample");
            foreach (Process process in processes)
            {
                if (process.Id == processId)
                {
                    // Need to convert the process to an instance of WMIProviderSampel
                }
            }

            return null;
        }
        catch (ArgumentException)
        {
            return null;
        }
    }

As part of a WMI Coupled provider that I'm creating I need to write an instance enumerator.
The code I have is below. What I need to do is get the Class instance associated with the process. Any ideas?

    static public WMIProviderSample GetInstance([ManagementName("ID")] int processId)
    {
        try
        {
            Process[] processes = Process.GetProcessesByName("WMI Provider Sample");
            foreach (Process process in processes)
            {
                if (process.Id == processId)
                {
                    // Need to convert the process to an instance of WMIProviderSampel
                }
            }

            return null;
        }
        catch (ArgumentException)
        {
            return null;
        }
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流星番茄 2024-08-23 05:24:07

它是我使用 Visual Studio 2008 WinForm 向导创建的 Windows 窗体类。
我正在根据文章 http://msdn.microsoft.com/en-us/library/cc268228.aspx" rel="nofollow noreferrer">http:// /msdn.microsoft.com/en-us/library/cc268228.aspx

It is a Windows Forms Class that I created using the Visual Studio 2008 WinForm Wizard.
I'm modifying it to become a WMI Managed class according to the article http://msdn.microsoft.com/en-us/library/cc268228.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文