PerformanceCounterCategory 到字符串值

发布于 2024-12-06 18:58:52 字数 511 浏览 0 评论 0原文

我正在尝试检索 ReadyBoost 缓存的值 我编写了以下代码,但它说该值不存在

System.Diagnostics.PerformanceCounterCategory pc;
            pc = new System.Diagnostics.PerformanceCounterCategory("ReadyBoost Cache");
            pc.GetCounters("Bytes cached");
            MessageBox.Show(Convert.ToString(pc));

拼写正确,我可以看到此代码后面的对象

http://msdn.microsoft.com/en-us/library/2fh4x1xb(v=vs.71).aspx

提前致谢

I am trying to retrieve the value of my readyboost cache I wrote the following code but it says the value does not exist

System.Diagnostics.PerformanceCounterCategory pc;
            pc = new System.Diagnostics.PerformanceCounterCategory("ReadyBoost Cache");
            pc.GetCounters("Bytes cached");
            MessageBox.Show(Convert.ToString(pc));

Spelling is correct, I can see the object following this code

http://msdn.microsoft.com/en-us/library/2fh4x1xb(v=vs.71).aspx

Thanks in advance

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

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

发布评论

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

评论(1

与风相奔跑 2024-12-13 18:58:52

GetCounters的参数应该是性能计数器的实例名称。更改您的代码如下:

    System.Diagnostics.PerformanceCounterCategory pc;
    pc = new System.Diagnostics.PerformanceCounterCategory("ReadyBoost Cache");
    foreach (PerformanceCounter counter in pc.GetCounters())
    {
        if (counter.CounterName == "Bytes cached")
        {
            //to do
        }
    }

the parameter of GetCounters should be the instance name of the performance Counter. change your code as follows:

    System.Diagnostics.PerformanceCounterCategory pc;
    pc = new System.Diagnostics.PerformanceCounterCategory("ReadyBoost Cache");
    foreach (PerformanceCounter counter in pc.GetCounters())
    {
        if (counter.CounterName == "Bytes cached")
        {
            //to do
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文