March 2002
Intermediate to advanced
864 pages
31h 8m
English
LingerOption
This class is a socket option object that enables a socket to continue to send queued
data after a call to Socket.Close().
If the Enabled property
is True, the connection
lingers for the number of seconds given by LingerTime.
The LingerOption
object is set on a socket with the Socket.SetSocketOption() method and a SocketOptionName
of SocketOptionName.Linger.
public class LingerOption { // Public Constructors public method LingerOption(bool enable, int seconds); // Public Instance Properties public field bool Enabled{set; get; } public field int LingerTime{set; get; } }
TcpClient.LingerState
TcpClient.LingerState