This documentation is archived and is not being maintained.

Ping.PingCompleted Event

Occurs when an asynchronous operation to send an Internet Control Message Protocol (ICMP) echo message and receive the corresponding ICMP echo reply message completes or is canceled.

Namespace:  System.Net.NetworkInformation
Assembly:  System (in System.dll)

'Declaration
Public Event PingCompleted As PingCompletedEventHandler
'Usage
Dim instance As Ping 
Dim handler As PingCompletedEventHandler 

AddHandler instance.PingCompleted, handler

Applications use the PingCompleted event to get information about the completion status and data collected by a call to one of the SendAsync methods. The PingCompletedEventHandler delegate provides the call back method invoked when SendAsync raises this event.

The following code example demonstrates specifying a callback method for the PingCompleted event. The complete example is available in the Ping class overview.

No code example is currently available or this language may not be supported.
Ping* pingSender = new Ping ();

// When the PingCompleted event is raised,
// the PingCompletedCallback method is called.
pingSender->PingCompleted += new PingCompletedEventHandler (PingCompletedCallback);

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: