Ping.PingCompleted Événement
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.
Se produit quand une opération asynchrone pour envoyer un message ICMP d’écho et recevoir le message ICMP de réponse à écho correspondant se termine ou est annulée.
public:
event System::Net::NetworkInformation::PingCompletedEventHandler ^ PingCompleted;
public event System.Net.NetworkInformation.PingCompletedEventHandler? PingCompleted;
public event System.Net.NetworkInformation.PingCompletedEventHandler PingCompleted;
member this.PingCompleted : System.Net.NetworkInformation.PingCompletedEventHandler
Public Custom Event PingCompleted As PingCompletedEventHandler
Public Event PingCompleted As PingCompletedEventHandler
Type d'événement
Exemples
L’exemple de code suivant illustre la spécification d’une méthode de rappel pour l’événement PingCompleted . L’exemple complet est disponible dans la vue d’ensemble de la Ping classe.
Ping ^ pingSender = gcnew Ping;
// When the PingCompleted event is raised,
// the PingCompletedCallback method is called.
pingSender->PingCompleted += gcnew PingCompletedEventHandler( PingCompletedCallback );
Ping pingSender = new Ping ();
// When the PingCompleted event is raised,
// the PingCompletedCallback method is called.
pingSender.PingCompleted += new PingCompletedEventHandler (PingCompletedCallback);
Remarques
Les applications utilisent l’événement PingCompleted pour obtenir des informations sur l’achèvement status et les données collectées par un appel à l’une SendAsync des méthodes. Le PingCompletedEventHandler délégué fournit la méthode de rappel appelée lorsque SendAsync déclenche cet événement.