首页 > 编程 > C# > 正文

C#实现TCP连接信息统计的方法

2019-10-29 21:41:56
字体:
来源:转载
供稿:网友

这篇文章主要介绍了C#实现TCP连接信息统计的方法,可实现有效获取TCP连接信息及连接状态的功能,需要的朋友可以参考下

本文实例讲述了C#实现TCP连接信息统计的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.ComponentModel; 
  4. using System.Data; 
  5. using System.Drawing; 
  6. using System.Linq; 
  7. using System.Text; 
  8. using System.Windows.Forms; 
  9. using System.Net.NetworkInformation; 
  10. namespace test2 
  11. public partial class Form1 : Form 
  12. public Form1() 
  13. InitializeComponent(); 
  14. private void Form1_Load(object sender, EventArgs e) 
  15. IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties(); 
  16. TcpConnectionInformation[] connections = properties.GetActiveTcpConnections(); 
  17. foreach (TcpConnectionInformation t in connections) 
  18. listBoxResult.Items.Add("本地端点: " + t.LocalEndPoint.Address); 
  19. listBoxResult.Items.Add("远程端点: " + t.RemoteEndPoint.Address); 
  20. listBoxResult.Items.Add("状态:" + t.State); 

希望本文所述对大家的C#程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表