1

运行程序时是否可以获得正在运行的进程列表及其相应的应用程序域?我知道mscoree.dll允许我使用ICorRuntimeHost.EnumDomains方法检索当前进程的所有应用程序域。有没有办法在使用外部 API和纯 C# 代码的情况下获取这些信息?我了解 mdbg 有一些功能可能会有所帮助,但我不确定如何使用此调试器。我真的在寻找仅使用 C# 的解决方案。

谢谢

编辑:目标是在 html 页面上显示每个进程及其相应的应用程序域。理想情况下,会有一个函数遍历所有正在运行的进程并检索此信息。

检索当前进程的所有应用程序域的代码:

    private static List<AppDomainInf> GetAppDomains()
    {
        IList<AppDomain> mAppDomainsList = new List<AppDomain>();
        List<AppDomainInf> mAppDomainInfos = new List<AppDomainInf>();

        IntPtr menumHandle = IntPtr.Zero;
        ICorRuntimeHost host = new CorRuntimeHost();

        try
        {
            host.EnumDomains(out menumHandle);
            object mTempDomain = null;

            //add all the current app domains running
            while (true)
            {
                host.NextDomain(menumHandle, out mTempDomain);
                if (mTempDomain == null) break;
                AppDomain tempDomain = mTempDomain as AppDomain;
                mAppDomainsList.Add((tempDomain));
            }

            //retrieve every app domains detailed information
            foreach (var appDomain in mAppDomainsList)
            {
                AppDomainInf domainInf = new AppDomainInf();

                domainInf.Assemblies = GetAppDomainAssemblies(appDomain);
                domainInf.AppDomainName = appDomain.FriendlyName;

                mAppDomainInfos.Add(domainInf);
            }

            return mAppDomainInfos;
        }
        catch (Exception)
        {
            throw; //rethrow
        }
        finally
        {
            host.CloseEnum(menumHandle);
            Marshal.ReleaseComObject(host);
        }
    }
4

1 回答 1

2

使用位于 C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\MdbgCore.dll 内的 MdbgCore.dll:

CorPublish cp = new CorPublish();
foreach (CorPublishProcess process in cp.EnumProcesses())
            {
                    foreach (CorPublishAppDomain appDomain in process.EnumAppDomains())
                    {

                    }
                }
于 2013-02-14T15:28:23.763 回答