System.Net.Sockets.LingerOption
namespace System.Net.Sockets
{
public class LingerOption
{
public bool Enabled { get; set; }
public int LingerTime { get; set; }
public LingerOption(bool enable, int seconds);
}
}