IcmpV6Statistics.MessagesSent 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 ICMPv6 envoyés.
public:
abstract property long MessagesSent { long get(); };
public abstract long MessagesSent { get; }
[System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("osx")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public abstract long MessagesSent { get; }
member this.MessagesSent : int64
[<System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("osx")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
member this.MessagesSent : int64
Public MustOverride ReadOnly Property MessagesSent As Long
Valeur de propriété
Valeur Int64 qui spécifie le nombre total de messages ICMPv6 envoyés.
- Attributs
Exemples
L’exemple suivant affiche la valeur de cette propriété.
void ShowIcmpV6MessageData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
Console::WriteLine( " Messages ............................ Sent: {0,-10} Received: {1,-10}",
statistics->MessagesSent, statistics->MessagesReceived );
}
public static void ShowIcmpV6MessageData ()
{
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
Console.WriteLine (" Messages ............................ Sent: {0,-10} Received: {1,-10}",
statistics.MessagesSent, statistics.MessagesReceived);
}
Public Shared Sub ShowIcmpV6MessageData()
Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
Console.WriteLine(" Messages ............................ Sent: {0,-10} Received: {1,-10}", statistics.MessagesSent, statistics.MessagesReceived)
End Sub
Remarques
Les messages ICMPv6 sont envoyés pour communiquer des erreurs et des informations sur les paquets envoyés à l’aide du protocole Internet version 6 (IPv6).