IPGlobalStatistics::ReceivedPacketsWithHeadersErrors Property
.NET Framework (current version)
Gets the number of Internet Protocol (IP) packets with header errors that were received.
Assembly: System (in System.dll)
The value returned by this property includes packets discarded for non-address related issues in the header fields, such as bad checksums, time-to-live value exceeded, and incorrect IP options.
The following code example displays statistics for received IP packets with errors.
void ShowInboundIPErrors() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IPGlobalStatistics ^ ipstat = properties->GetIPv4GlobalStatistics(); Console::WriteLine( " Inbound Packet Errors:" ); Console::WriteLine( " Header Errors ....................... : {0}", ipstat->ReceivedPacketsWithHeadersErrors ); Console::WriteLine( " Address Errors ...................... : {0}", ipstat->ReceivedPacketsWithAddressErrors ); Console::WriteLine( " Unknown Protocol Errors ............. : {0}", ipstat->ReceivedPacketsWithUnknownProtocol ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: