System.Net.Sockets.Socket.LingerState Property

Gets or sets a value that specifies whether the System.Net.Sockets.Socket will delay closing a socket in an attempt to send all pending data.

Syntax

public LingerOption LingerState { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

The Socket.LingerState property changes the way Socket.Close method behaves. This property when set modifies the conditions under which the connection can be reset by Winsock. Connection resets can still occur based on the IP protocol behavior.

This property controls the length of time that a connection-oriented connection will remain open after a call to Socket.Close when data remains to be sent.

When you call methods to send data to a peer, this data is placed in the outgoing network buffer. This property can be used to ensure that this data is sent to the remote host before the TcpClient.Close method drops the connection.

To enable lingering, create a System.Net.Sockets.LingerOption instance containing the desired values, and set the Socket.LingerState property to this instance.

The following table describes the behavior of the Socket.Close method for the possible values of the LingerOption.Enabled property and the LingerOption.LingerTime property stored in the Socket.LingerState property.

false (disabled), the default value

The time-out is not applicable, (default).

Attempts to send pending data until the default IP protocol time-out expires.

true (enabled)

A nonzero time-out

Attempts to send pending data until the specified time-out expires, and if the attempt fails, then Winsock resets the connection.

true (enabled)

A zero timeout.

Discards any pending data. For connection-oriented socket (TCP, for example), Winsock resets the connection.

The IP stack computes the default IP protocol time-out period to use based on the round trip time of the connection. In most cases, the time-out computed by the stack is more relevant than one defined by an application. This is the default behavior for a socket when the Socket.LingerState property is not set.

When the LingerOption.LingerTime property stored in the Socket.LingerState property is set greater than the default IP protocol time-out, the default IP protocol time-out will still apply and override.

Requirements

Namespace: System.Net.Sockets
Assembly: System (in System.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0