Ping::OnPingCompleted Method (PingCompletedEventArgs^)
.NET Framework (current version)
Raises the PingCompleted event.
Assembly: System (in System.dll)
Parameters
- e
-
Type:
System.Net.NetworkInformation::PingCompletedEventArgs^
A PingCompletedEventArgs object that contains event data.
Classes that inherit from the Ping class can override this method to perform additional tasks, such as logging the data contained in the e parameter.
Raising an event invokes the event handler through a delegate. For more information, see NIB: Raising an Event.
The OnPingCompleted method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors:
When overriding OnPingCompleted in a derived class, be sure to call the base class’s OnPingCompleted method so that registered delegates receive the event.
.NET Framework
Available since 2.0
Available since 2.0
Show: