HttpListenerTimeoutManager.DrainEntityBody Property

Definition

Gets or sets the time allowed for the HttpListener to drain the entity body on a Keep-Alive connection.

public:
 property TimeSpan DrainEntityBody { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan DrainEntityBody { get; set; }
member this.DrainEntityBody : TimeSpan with get, set
Public Property DrainEntityBody As TimeSpan

Property Value

The time allowed for the HttpListener to drain the entity body on a Keep-Alive connection.

Remarks

The default value for this property is 2 minutes.

On a Keep-Alive connection, after the app has sent a response for a request and before the request entity body has completely arrived, the HttpListener starts draining the remainder of the entity body to reach another potentially pipelined request from the client. If the time to drain the remaining entity body exceeds the allowed period the connection is timed out.

Applies to