IPGlobalStatistics::ReceivedPacketsDiscarded Property
.NET Framework (current version)
Gets the number of Internet Protocol (IP) packets that have been received and discarded.
Assembly: System (in System.dll)
The value returned by this property includes only those packets that were discarded even though they did not contain errors that prevented reassembly or delivery. Typically, packets in this category are discarded because of insufficient buffer space.
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
Available since 2.0
Show: