Files
2026-06-04 11:42:34 +02:00

33 lines
1.2 KiB
C#

using System;
using System.ComponentModel;
namespace System.Net.NetworkInformation
{
/// <summary>Provides data for the <see cref="E:System.Net.NetworkInformation.Ping.PingCompleted" /> event.</summary>
// 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;
}
/// <summary>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.</summary>
/// <returns>A <see cref="T:System.Net.NetworkInformation.PingReply" /> object that describes the results of the ICMP echo request.</returns>
// 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;
}
}