IcmpV6Statistics.ErrorsReceived Propriété

Définition

Obtient le nombre de messages d’erreur ICMPv6 reçus.

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

Valeur de propriété

Valeur Int64 qui spécifie le nombre total de messages d’erreur ICMP reçus.

Exemples

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

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

End Sub

S’applique à