IPGlobalProperties Class
Provides information about the network connectivity of the local computer.
Assembly: System (in System.dll)
This class provides configuration and statistical information about the local computer's network interfaces and network connections.
The information provided by this class is similar to that provided by the Internet Protocol Helper API functions. For information about the Internet Protocol Helper, see the documentation in the MSDN Library.
The following code example displays information about the local computer using an instance of this class.
Public Shared Sub ShowInboundIPStatistics() Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties() Dim ipstat As IPGlobalStatistics = properties.GetIPv4GlobalStatistics() Console.WriteLine(" Inbound Packet Data:") Console.WriteLine(" Received ............................ : {0}", ipstat.ReceivedPackets) Console.WriteLine(" Forwarded ........................... : {0}", ipstat.ReceivedPacketsForwarded) Console.WriteLine(" Delivered ........................... : {0}", ipstat.ReceivedPacketsDelivered) Console.WriteLine(" Discarded ........................... : {0}", ipstat.ReceivedPacketsDiscarded) End Sub 'ShowInboundIPStatistics
void ShowInboundIPStatistics()
{
IPGlobalProperties* properties = IPGlobalProperties::GetIPGlobalProperties();
IPGlobalStatistics* ipstat = properties->GetIPv4GlobalStatistics();
Console::WriteLine(S" Inbound Packet Data:");
Console::WriteLine(S" Received ............................ : {0}", __box(ipstat->ReceivedPackets));
Console::WriteLine(S" Forwarded ........................... : {0}", __box(ipstat->ReceivedPacketsForwarded));
Console::WriteLine(S" Delivered ........................... : {0}", __box(ipstat->ReceivedPacketsDelivered));
Console::WriteLine(S" Discarded ........................... : {0}", __box(ipstat->ReceivedPacketsDiscarded));
}
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.