IcmpV4Statistics.ErrorsReceived Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le nombre de messages d'erreur ICMPv4 (Internet Control Message Protocol version 4) qui ont été reçus.
public:
abstract property long ErrorsReceived { long get(); };
public abstract long ErrorsReceived { get; }
[System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("osx")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public abstract long ErrorsReceived { get; }
member this.ErrorsReceived : int64
[<System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("osx")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
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 qui ont été reçus.
- Attributs
Exemples
L’exemple suivant affiche la valeur de cette propriété.
void ShowIcmpV4ErrorData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics();
Console::WriteLine( " Errors .............................. Sent: {0,-10} Received: {1,-10}",
statistics->ErrorsSent,
statistics->ErrorsReceived );
}
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 à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.