IcmpV4Statistics::AddressMaskRepliesSent Property
.NET Framework (current version)
Gets the number of Internet Control Message Protocol version 4 (ICMPv4) Address Mask Reply messages that were sent.
Assembly: System (in System.dll)
Address Mask Request and Reply messages are used to determine the number of bits in the subnet mask for the local subnet.
The following example displays the value of this property.
void ShowAddressMaskData() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics(); Console::WriteLine( " Address Mask Requests ............... Sent: {0,-10} Received: {1,-10}", statistics->AddressMaskRequestsSent, statistics->AddressMaskRequestsReceived ); Console::WriteLine( " Address Mask Replies ................ Sent: {0,-10} Received: {1,-10}", statistics->AddressMaskRepliesSent, statistics->AddressMaskRepliesReceived ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: