TcpConnectionPoolSettings.LeaseTimeout Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the time span after which a connection in the connection pool is closed.
public:
property TimeSpan LeaseTimeout { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan LeaseTimeout { get; set; }
member this.LeaseTimeout : TimeSpan with get, set
Public Property LeaseTimeout As TimeSpan
Property Value
Returns a TimeSpan structure that indicates the time span after which a cached TCP connection is purged from the connection pool.
Exceptions
The value cannot be less than zero.
Remarks
This property bounds the overall lifetime of a socket. Once a socket has been around longer than LeaseTimeout, it is closed as soon as it is returned to the connection pool. The connection cache used by the TCP transport creates new connections as required for each endpoint up to the cache limit that is set by MaxOutboundConnectionsPerEndpoint.