IPGlobalStatistics::OutputPacketRequests Property
.NET Framework (current version)
Gets the number of outbound Internet Protocol (IP) packets.
Assembly: System (in System.dll)
The number of outbound packets does not include the number of packets that have been forwarded.
The following code example displays statistics for outbound IP packets.
void ShowOutboundIPStatistics() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IPGlobalStatistics ^ ipstat = properties->GetIPv4GlobalStatistics(); Console::WriteLine( " Outbound Packet Data:" ); Console::WriteLine( " Requested ........................... : {0}", ipstat->OutputPacketRequests ); Console::WriteLine( " Discarded ........................... : {0}", ipstat->OutputPacketsDiscarded ); Console::WriteLine( " No Routing Discards ................. : {0}", ipstat->OutputPacketsWithNoRoute ); Console::WriteLine( " Routing Entry Discards .............. : {0}", ipstat->OutputPacketRoutingDiscards ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: