System.Net.NetworkInformation.PingReply
namespace System.Net.NetworkInformation
{
public class PingReply
{
public IPAddress Address { get; }
public byte[] Buffer { get; }
public PingOptions Options { get; }
public long RoundtripTime { get; }
public IPStatus Status { get; }
}
}