资源简介

C#获取网络流量信息并且获取当前CPU使用率实时监控

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;

namespace NetInfo
{
    
/// 
    /// 代表一个网络适配器安装在机器上。
    /// 这一类的属性可以用来获取当前网络速度。
/// 

public class NetworkAdapter
{
/// 
        /// 此类的实例应该是只有在NetworkMonitor创建。
/// 

internal NetworkAdapter(string name)
{
this.name = name;
}

        private long dlSpeed ulSpeed; // 下载\上传速度在每秒字节。
        private long dlValue ulValue; // 下载\上传的字节计数器的值。
        private long dlValueOld ulValueOld; // 下载\上传计数器的值一秒钟前,以字节为单位。

        internal string name; // 该适配器的名称。
        internal PerformanceCounter dlCounter ulCounter; // 性能计数器监视上传和下载速度。

/// 
        /// 筹备监测。
/// 

internal void init

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        476  2010-02-03 15:34  GetNetInfo\GetNetInfo\obj\Debug\GetNetInfo.csproj.FileListAbsolute.txt

     文件       8704  2010-02-03 15:33  GetNetInfo\GetNetInfo\obj\Debug\GetNetInfo.exe

     文件      14328  2010-02-03 15:34  GetNetInfo\GetNetInfo\bin\Debug\GetNetInfo.vshost.exe

     文件       8704  2010-02-03 15:33  GetNetInfo\GetNetInfo\bin\Debug\网络流量CPU使用率监控.exe

     文件      33792  2007-05-02 09:57  GetNetInfo\GetNetInfo\bin\Debug\CustomMarshalers.dll

     文件       1376  2010-02-02 17:43  GetNetInfo\GetNetInfo\Properties\AssemblyInfo.cs

     文件       2697  2010-02-03 15:33  GetNetInfo\GetNetInfo\NetworkAdapter.cs

     文件       3832  2010-02-03 15:39  GetNetInfo\GetNetInfo\NetworkMonitor.cs

     文件       2385  2010-02-03 15:40  GetNetInfo\GetNetInfo\Program.cs

     文件       2701  2010-02-03 09:57  GetNetInfo\GetNetInfo\GetNetInfo.csproj

     文件        490  2007-07-21 01:33  GetNetInfo\GetNetInfo\bin\Debug\GetNetInfo.vshost.exe.manifest

     文件      24064  2010-02-03 15:33  GetNetInfo\GetNetInfo\bin\Debug\GetNetInfo.pdb

     文件      24064  2010-02-03 15:33  GetNetInfo\GetNetInfo\obj\Debug\GetNetInfo.pdb

     文件        920  2010-02-02 17:43  GetNetInfo\GetNetInfo.sln

    ..A..H.     16896  2010-02-03 15:34  GetNetInfo\GetNetInfo.suo

     目录          0  2010-02-02 17:48  GetNetInfo\GetNetInfo\obj\Debug\Refactor

     目录          0  2010-02-02 17:43  GetNetInfo\GetNetInfo\obj\Debug\TempPE

     目录          0  2010-02-02 17:43  GetNetInfo\GetNetInfo\bin\Debug

     目录          0  2010-02-02 17:43  GetNetInfo\GetNetInfo\obj\Debug

     目录          0  2010-02-02 17:43  GetNetInfo\GetNetInfo\bin

     目录          0  2010-02-02 17:43  GetNetInfo\GetNetInfo\obj

     目录          0  2010-02-02 17:43  GetNetInfo\GetNetInfo\Properties

     目录          0  2010-02-02 17:43  GetNetInfo\GetNetInfo

     目录          0  2010-02-02 17:43  GetNetInfo

----------- ---------  ---------- -----  ----

               145429                    24


评论

共有 条评论