System.Net.NetworkInformation.PingOptions
namespace System.Net.NetworkInformation
{
public class PingOptions
{
public bool DontFragment { get; set; }
public int Ttl { get; set; }
public PingOptions();
public PingOptions(int ttl, bool dontFragment);
}
}