IcmpV4Statistics::MessagesSent Property

 

Gets the number of Internet Control Message Protocol version 4 (ICMPv4) messages that were sent.

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

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

Property Value

Type: System::Int64

An Int64 value that specifies the total number of ICMPv4 messages that were sent.

ICMPV4 messages are sent to communicate errors and information about packets that were sent using Internet Protocol version 4 (IPv4).

The following example displays the value of this property.

void ShowIcmpV4MessageData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics();
   Console::WriteLine( "  Messages ............................ Sent: {0,-10}   Received: {1,-10}", 
      statistics->MessagesSent, statistics->MessagesReceived );
}

.NET Framework
Available since 2.0
Return to top
Show: