IcmpV4Statistics.ErrorsSent Propriété

Définition

Obtient le nombre de messages d’erreur ICMPv4 (Internet Control Message Protocol version 4) envoyés.

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

Valeur de propriété

Valeur Int64 qui spécifie le nombre total de messages d’erreur ICMP envoyés.

Exemples

L’exemple suivant affiche la valeur de cette propriété.

public static void ShowIcmpV4ErrorData()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV4Statistics statistics = properties.GetIcmpV4Statistics();
    Console.WriteLine("  Errors .............................. Sent: {0,-10}   Received: {1,-10}",
        statistics.ErrorsSent, statistics.ErrorsReceived);
}
Public Shared Sub ShowIcmpV4ErrorData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV4Statistics = properties.GetIcmpV4Statistics()
    Console.WriteLine("  Errors .............................. Sent: {0,-10}   Received: {1,-10}", statistics.ErrorsSent, statistics.ErrorsReceived)

End Sub

S’applique à