HttpListenerTimeoutManager.IdleConnection 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 allowed for an idle connection.
public:
property TimeSpan IdleConnection { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan IdleConnection { get; set; }
member this.IdleConnection : TimeSpan with get, set
Public Property IdleConnection As TimeSpan
Property Value
The time allowed for an idle connection.
Remarks
The default value for this property is 2 minutes.
This timeout is only enforced after the first request on the connection is routed to the HttpListener.
The system cannot determine the request queue or URL group that the request is associated with until the headers have been parsed. Therefore, the HttpListener enforces the default IdleConnection timer for the first request on a connection. Subsequent requests on a Keep-Alive connection will use the value set on this property.