using System; using System.ComponentModel; namespace System.Net.NetworkInformation { /// Provides data for the event. // Token: 0x020001AF RID: 431 public class PingCompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs { // Token: 0x06000E56 RID: 3670 RVA: 0x00028E3C File Offset: 0x0002703C internal PingCompletedEventArgs(Exception ex, bool cancelled, object userState, PingReply reply) : base(ex, cancelled, userState) { this.reply = reply; } /// Gets an object that contains data that describes an attempt to send an Internet Control Message Protocol (ICMP) echo request message and receive a corresponding ICMP echo reply message. /// A object that describes the results of the ICMP echo request. // Token: 0x170004A5 RID: 1189 // (get) Token: 0x06000E57 RID: 3671 RVA: 0x00028E50 File Offset: 0x00027050 public PingReply Reply { get { return this.reply; } } // Token: 0x04000CE3 RID: 3299 private PingReply reply; } }