溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中如何監(jiān)測IPv6網(wǎng)速及流量

發(fā)布時間:2020-07-15 16:09:22 來源:億速云 閱讀:213 作者:小豬 欄目:開發(fā)技術(shù)

這篇文章主要講解了C#中如何監(jiān)測IPv6網(wǎng)速及流量,內(nèi)容清晰明了,相信大家閱讀完之后會有幫助。

1、前言

最近做項目需要用到監(jiān)測網(wǎng)速及流量,我經(jīng)過百度和墻內(nèi)谷歌都沒能快速發(fā)現(xiàn)監(jiān)測IPV6流量和網(wǎng)速的用例;也經(jīng)過自己的一番查詢和調(diào)試,浪費了不少時間,現(xiàn)在作為經(jīng)驗分享出來希望大家指正。

2、C#代碼

using System.Net.NetworkInformation;
using System.Timers;

namespace Monitor
{
  public class MonitorNetwork
  {   
    public string UpSpeed { get; set; }  
    public string DownSpeed { get; set; }
    public string AllTraffic { get; set; }      
    private string NetCardDescription { get; set; }  
    //建立連接時上傳的數(shù)據(jù)量
    private long BaseTraffic { get; set; }  
    private long OldUp { get; set; }  
    private long OldDown { get; set; }
    private NetworkInterface networkInterface { get; set; }
    private Timer timer = new Timer() { Interval = 1000 };
  
    public void Close()
    {
      timer.Stop();  
    }
  
    public MonitorNetwork(string netCardDescription)
    {  
      timer.Elapsed += Timer_Elapsed;  
      NetCardDescription = netCardDescription;  
      timer.Interval = 1000;   
    }

    public bool Start()
    {
      networkInterface = null;  
      NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces();  
      foreach (var var in nics)
      {
        if (var.Description.Contains(NetCardDescription))
        {
          networkInterface = var;
          break;
        }
      }  
      if (networkInterface == null)
      {
        return false;
      }
      else
      {  
        BaseTraffic = (networkInterface.GetIPStatistics().BytesSent +
                networkInterface.GetIPStatistics().BytesReceived);  
        OldUp = networkInterface.GetIPStatistics().BytesSent;  
        OldDown = networkInterface.GetIPStatistics().BytesReceived;  
        timer.Start();  
        return true;
      }
  
    }

    private string[] units = new string[] {"KB/s","MB/s","GB/s" };

    private void CalcUpSpeed()
    {
      long nowValue = networkInterface.GetIPStatistics().BytesSent;  
      int num = 0;
      double value = (nowValue - OldUp) / 1024.0;
      while (value > 1023)
      {
        value = (value / 1024.0);
        num++;
      }  
      UpSpeed = value.ToString("0.0") + units[num];  
      OldUp = nowValue;  
    }
  
    private void CalcDownSpeed()
    {
      long nowValue = networkInterface.GetIPStatistics().BytesReceived;  
      int num = 0;
      double value = (nowValue - OldDown) / 1024.0;   
      while (value > 1023)
      {
        value = (value / 1024.0);
        num++;
      }  
      DownSpeed = value.ToString("0.0") + units[num];  
      OldDown = nowValue;  
    }
  
    private string[] unitAlls = new string[] { "KB", "MB", "GB" ,"TB"};
  
    private void CalcAllTraffic()
    {
      long nowValue = OldDown+OldUp;  
      int num = 0;
      double value = (nowValue- BaseTraffic) / 1024.0;
      while (value > 1023)
      {
        value = (value / 1024.0);
        num++;
      }  
      AllTraffic = value.ToString("0.0") + unitAlls[num];
    }

    private void Timer_Elapsed(object sender, ElapsedEventArgs e)
    {
      CalcUpSpeed();
      CalcDownSpeed();
      CalcAllTraffic();
    }
  }
}

3、胡說八道

雖然沒能直接快速地百度到方法,但是實現(xiàn)這個需求的時候,心里是有個譜,Windows系統(tǒng)能監(jiān)測到這個網(wǎng)速和流量,沒理由實現(xiàn)不了,只需要一個方法將這個信息讀取出來就好。最后實現(xiàn)這個需求是利用了System.Net.NetworkInformation這個程序集,但是這個程序集沒有只接提供網(wǎng)速監(jiān)測的方法,而是提供了接收和發(fā)送數(shù)據(jù)量的屬性,需要自己計算出即使網(wǎng)速,所以這個網(wǎng)速不是特別的準確。

這個程序集其實一開始就看到了,前輩方法中使用的是IPv4InterfaceStatistics類中的BytesReceived屬性和BytesSent屬性實現(xiàn)的,但是在這個程序集里沒有對應的IPv6類,恍恍惚惚。

C#中如何監(jiān)測IPv6網(wǎng)速及流量

然后呢,我就下意識以為這個程序集比較老舊,不支持IPv6統(tǒng)計信息讀取,然后也是各種搜索無果,之后呢不死心想再來研究研究,東點點西瞅瞅,然后在NetworkInterface 類中發(fā)現(xiàn)了一個GetIPStatistics()方法,它的描述是“獲取此 NetworkInterface 實例的 IP 統(tǒng)計信息?!薄?/p>

C#中如何監(jiān)測IPv6網(wǎng)速及流量

然后就順理成章的事了,根據(jù)GetIPStatistics()返回的IPInterfaceStatistics實例中的BytesReceived屬性和BytesSent屬性就能獲取到收發(fā)的數(shù)據(jù)總量,然后根據(jù)這個信息就能計算出大約的網(wǎng)速。

C#中如何監(jiān)測IPv6網(wǎng)速及流量

經(jīng)測試,利用IPInterfaceStatistics實例是能讀取到IPv4和IPv6的總數(shù)據(jù)量的,因為這次的需求就是監(jiān)測總量,如果需要單獨監(jiān)測IPv6的可以用總量減去IPv4部分。

看完上述內(nèi)容,有沒有對C#中如何監(jiān)測IPv6網(wǎng)速及流量有進一步的了解,如果還想學習更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI