mscorlib(4.0.0.0) API with additions
PingCompletedEventArgs.cs
2 
4 {
7  {
8  private PingReply reply;
9 
12  public PingReply Reply => reply;
13 
14  internal PingCompletedEventArgs(PingReply reply, Exception error, bool cancelled, object userToken)
15  : base(error, cancelled, userToken)
16  {
17  this.reply = reply;
18  }
19  }
20 }
Definition: __Canon.cs:3
Provides data for the E:System.Net.NetworkInformation.Ping.PingCompleted event.
Provides information about the status and data resulting from a Overload:System.Net....
Definition: PingReply.cs:6
Provides data for the MethodNameCompleted event.
PingReply Reply
Gets an object that contains data that describes an attempt to send an Internet Control Message Proto...
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22