Click here to Skip to main content
15,883,785 members
Articles / Programming Languages / Visual Basic
Article

Netstat Example

Rate me:
Please Sign up or sign in to vote.
3.65/5 (10 votes)
16 Feb 20031 min read 166.8K   2.8K   50   15
Sample classes to gather network statics for several protocols.

Netstat screenshot

Introduction

I have seen alot of requests on how to implement network statistics in .NET applications lately, however, I have not been able to find any .NET classes that do this.

I decided to write a simple VB.NET example on how to implement this with the help of the IP Helper API's. I am fairly new to .NET so the code approach might not be 100% 'politically correct' at all times, but I have tried to keep this as much .NET as I could. If you see something awful, please disregard it.

Using the Code

The NetStat class is the parent class because the class has several sub-classes: IP, UDP, TCP and ICMP. These classes contain properties which hold network statistics. You have to update these properties with the Class.Update method.

This method takes an optional parameter in the IP and TCP classes. If set to True this will update information which is not likely to change. The default is False. Also, if anything went wrong in the Update method, the return value is 0, so it's non-zero on success (It returns the size of structure). You get the error message by retrieving the .LastError property.

I have included a sample project with it, so you will get the picture pretty fast.

It can look something like this;

VB
Dim clsUDP As New NetStat.IP

If clsUDP.Update() <> 0 Then
    ' Success, get properties
    MsgBox("Datagrams received: " & clsUDP.InDatagrams.ToString)
Else
    ' Error, Call LastError
    Msgbox "An error occured; " & clsUDP.LastError
End If

If you find a bug or if you think there is something wrong with the code please mail me about it! Finally; Tips, comments and/or suggestions would be deeply appreciated! Thank you.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Sweden Sweden
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWat about COM Ports Pin
Bilal Haider28-Aug-08 6:02
professionalBilal Haider28-Aug-08 6:02 
QuestionTCP Table and SetTcpEntry ??? Pin
Vitoto7-May-05 18:37
Vitoto7-May-05 18:37 
QuestionWhere's the article? Pin
Paul Evans2-Feb-04 5:21
Paul Evans2-Feb-04 5:21 
AnswerRe: Where's the article? Pin
Thomas_fn2-Feb-04 10:01
Thomas_fn2-Feb-04 10:01 
GeneralGood Job! Pin
Jan-Peter3-Mar-03 9:16
Jan-Peter3-Mar-03 9:16 
GeneralRe: Good Job! Pin
Thomas_fn4-Mar-03 11:33
Thomas_fn4-Mar-03 11:33 
QuestionLink to ZIP File broken? Pin
kaschimer24-Feb-03 5:26
kaschimer24-Feb-03 5:26 
AnswerRe: Link to ZIP File broken? Pin
Yanan Wang26-Feb-03 4:42
Yanan Wang26-Feb-03 4:42 
GeneralRe: Link to ZIP File broken? Pin
webooth16-May-03 10:00
webooth16-May-03 10:00 
QuestionC# code? Pin
beavis17-Feb-03 19:04
beavis17-Feb-03 19:04 
AnswerRe: C# code? Pin
Thomas_fn4-Mar-03 11:36
Thomas_fn4-Mar-03 11:36 
GeneralRe: C# code? Pin
princedom16-May-03 4:04
princedom16-May-03 4:04 
GeneralRe: C# code? Pin
Anonymous24-May-03 11:42
Anonymous24-May-03 11:42 
GeneralRe: C# code? Pin
princedom19-May-03 7:33
princedom19-May-03 7:33 
GeneralRe: C# code? Pin
Paul Evans2-Feb-04 5:24
Paul Evans2-Feb-04 5:24 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.