IPGlobalStatistics::ReceivedPacketsDelivered Property

 

Gets the number of Internet Protocol (IP) packets delivered.

Namespace:   System.Net.NetworkInformation
Assembly:  System (in System.dll)

public:
property long long ReceivedPacketsDelivered {
	virtual long long get() abstract;
}

Property Value

Type: System::Int64

An Int64 value that specifies the total number of IP packets delivered.

The value returned by this property includes Internet Control Message Protocol (ICMP) messages.

The following code example displays statistics for received IP packets.

void ShowInboundIPStatistics()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IPGlobalStatistics ^ ipstat = 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 );
}

.NET Framework
Available since 2.0
Return to top
Show: