C#获得网络连接信息 IPGlobalProperties

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#获得网络连接信息 IPGlobalProperties相关的知识,希望对你有一定的参考价值。

原文:C#获得网络连接信息 IPGlobalProperties

IPGlobalProperties 提供有关本地计算机的网络连接的信息。

此类提供有关本地计算机的网络接口和网络连接的配置和统计信息 可以获取本机TCP UDP 丢包 发包等数据。

此类提供的信息与 IP Helper API 函数提供的信息相似。有关 IP Helper 的信息,请参见 MSDN Library 中的文档。

1             //得到本机Internet协议IPV4的统计数据;
2             IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
3             IPGlobalStatistics ipstat = properties.GetIPv4GlobalStatistics();
4             Console.WriteLine("  Inbound Packet Data:");
5             Console.WriteLine("      Received ............................ : {0}",ipstat.ReceivedPackets);
6             Console.WriteLine("      Forwarded ........................... : {0}",ipstat.ReceivedPacketsForwarded);
7             Console.WriteLine("      Delivered ........................... : {0}",ipstat.ReceivedPacketsDelivered);
8             Console.WriteLine("      Discarded ........................... : {0}",ipstat.ReceivedPacketsDiscarded);   

 

 

技术图片

https://msdn.microsoft.com/zh-cn/library/system.net.networkinformation.ipglobalproperties%28v=vs.110%29.aspx

以上是关于C#获得网络连接信息 IPGlobalProperties的主要内容,如果未能解决你的问题,请参考以下文章

c#网络通信简单程序的错误:在一个已经连接的套接字上做连接请求

如何获得IP地址?

C# 发送HttpWebRequest获得网络图片的大小尺寸

Socket通信实例(C#)

入坑写代码1——c#解析xml文件

C# 获得系统的CPU和内存信息