資源簡介
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
評論
共有 條評論