Click here to Skip to main content
Click here to Skip to main content

Using C# to Monitor Bandwidth for Wireless Devices Using NetworkInterface and .NET LINQ

By , 19 Nov 2012
 

Introduction  

This article explains creating a simple tool which will display the current bandwidth and other meta information about a selected wireless network card attached to your machine. If multiple wireless cards are attached to the machine then the tool has the ability to detect all of them. And the user can select which card we are interested in monitoring. Moreover this tool can be expanded to work with Ethernet adapters as well.   

Background  

.NET allows you to access all the network interface card information via the NetworkInterface.GetAllNetworkInterfaces() method. By applying LINQ filtering we can filter the information to capture only wireless interface information. Afterwards it’s just manipulating the inbuilt properties.

The code in this tool will help you calculate the number of bytes sent by the wireless device. And to measure the current download speed of your selected wireless adaptor along with it you will be able to gain access to the IP address associated with the wireless interface using the UnicastIPAddressInformation class.

Using the Code  

The first thing that we have do is detect all the wireless devises available in your machine and populate them into the dropdownbox:

using System.Net.NetworkInformation;

/// Detecting Wireless Adaptors Using Linq
IEnumerable<NetworkInterface> nics = NetworkInterface.GetAllNetworkInterfaces().Where(
  network => network.NetworkInterfaceType == NetworkInterfaceType.Wireless80211);
 
////Modified by to select only the active wireless adaptor by using below Linq statement
////.Where(network => network.OperationalStatus == 
//  OperationalStatus.Up && network.NetworkInterfaceType == NetworkInterfaceType.Wireless80211)

////To detect all Ethernet and wireless adaptors you can use below statement 
////.Where(network => network.OperationalStatus == OperationalStatus.Up && 
//  (network.NetworkInterfaceType == NetworkInterfaceType.Ethernet || 
//   network.NetworkInterfaceType == NetworkInterfaceType.Wireless80211))

///Add Items To Drop Down List
cmbAdptors.DisplayMember = "Description";
cmbAdptors.ValueMember= "Id";
foreach (NetworkInterface item in nics)
{
   cmbAdptors.Items.Add(item);
}
if (cmbAdptors.Items.Count > 0)
    cmbAdptors.SelectedIndex = 0;

Once the user changes the devises or initially when the first device is selected the selected index change event will fire and we can capture the IP address and then call the BandwidthCalculator method. In addition we need to start the timer which will update information every second:

private void cmbAdptors_SelectedIndexChanged(object sender, EventArgs e)
{
    try
    {
        if (cmbAdptors.SelectedItem is NetworkInterface)
        {
            slectedNic = cmbAdptors.SelectedItem as NetworkInterface;
             uniCastIPInfo = null;
            ///Populating IPv4 address
            if (slectedNic != null && slectedNic.GetIPProperties().UnicastAddresses != null)
            {
                UnicastIPAddressInformationCollection ipInfo = slectedNic.GetIPProperties().UnicastAddresses;

                foreach (UnicastIPAddressInformation item in ipInfo)
                {
                    if (item.Address.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork)
                    {
                        lblIP.Text = item.Address.ToString();
                        uniCastIPInfo = item;                            
                        break;
                    }
                }
            }

            BandwidthCalculator(uniCastIPInfo, slectedNic);
            wirelssUpdator.Enabled = true;
        }

    }
    catch (Exception ex)
    {               
        throw;
    }
}

The BandwidthCalculator method which will perform the updates:

public void BandwidthCalculator(UnicastIPAddressInformation ipInfo , NetworkInterface selecNic)
{
    try
    {
        if (selecNic == null)
            return;
        //Setting General Information 
        lblType.Text = selecNic.NetworkInterfaceType.ToString();
        lblOp.Text = selecNic.OperationalStatus.ToString();


       IPv4InterfaceStatistics interfaceData = selecNic.GetIPv4Statistics();
        int bytesRecivedSpeedValue = (int)(interfaceData.BytesReceived - double.Parse(lblReceived.Text)) / 1024;
        lblReceived.Text = interfaceData.BytesReceived.ToString();
        lblSpeed.Text = bytesRecivedSpeedValue.ToString() + "KB/s";//Download speed
        if (ipInfo != null)
        {
            TimeSpan addressLifeTime = TimeSpan.FromSeconds(ipInfo.AddressValidLifetime);
            lblVallifetime.Text = string.Format("{0:D2}h:{1:D2}m:{2:D2}s:{3:D3}ms",
                                   addressLifeTime.Hours,
                                   addressLifeTime.Minutes,
                                   addressLifeTime.Seconds,
                                   addressLifeTime.Milliseconds);

        }
    }
    catch (Exception ex)
    {

    }

}

Updating the timer:

private void wirelssUpdator_Tick(object sender, EventArgs e)
{
    BandwidthCalculator(uniCastIPInfo, slectedNic);
}

Points of Interest

You can extend this application to work with the below interface types 

  • Wireless80211
  • Ethernet 
  • MobileBroadbandGSM 
  • MobileBroadbandCDMA
  • etc.. 

Points to Remember 

Make sure that you are using .NET 3.5 or higher. Also you will need at least one wireless interface attached to your system.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Tyronne Thomas
Software Developer (Senior)
Sri Lanka Sri Lanka
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionPerformanceCountermembergiammin25 Nov '12 - 23:45 
GeneralMy vote of 5memberpradiprenushe27 Aug '12 - 2:57 
GeneralMy vote of 5memberChristian Amado22 Aug '12 - 5:11 
GeneralMy vote of 5memberDebdatta Basu21 Aug '12 - 23:00 
QuestionBytes Received or Sent?memberandegre20 Aug '12 - 15:52 
AnswerRe: Bytes Received or Sent?memberTyronne Thomas20 Aug '12 - 16:28 
GeneralNicememberJrPacheco17 Aug '12 - 4:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 19 Nov 2012
Article Copyright 2012 by Tyronne Thomas
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid