IcmpV4Statistics.MessagesSent Właściwość

Definicja

Pobiera liczbę wysłanych komunikatów protokołu ICMPv4 (Internet Control Message Protocol w wersji 4).

public:
 abstract property long MessagesSent { long get(); };
public abstract long MessagesSent { get; }
member this.MessagesSent : int64
Public MustOverride ReadOnly Property MessagesSent As Long

Wartość właściwości

Int64

Wartość Int64 określająca całkowitą liczbę wysłanych komunikatów ICMPv4.

Przykłady

Poniższy przykład przedstawia wartość tej właściwości.

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

End Sub

Uwagi

Komunikaty ICMPV4 są wysyłane w celu komunikowania się z błędami i informacjami o pakietach wysyłanych przy użyciu protokołu internetowego w wersji 4 (IPv4).

Dotyczy