HttpListenerTimeoutManager.EntityBody 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 the request entity body to arrive.
public:
property TimeSpan EntityBody { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan EntityBody { get; [System.Runtime.Versioning.SupportedOSPlatform("windows")] set; }
public TimeSpan EntityBody { get; set; }
[<set: System.Runtime.Versioning.SupportedOSPlatform("windows")>]
member this.EntityBody : TimeSpan with get, set
member this.EntityBody : TimeSpan with get, set
Public Property EntityBody As TimeSpan
Property Value
The time allowed for the request entity body to arrive.
- Attributes
Remarks
The default value for this property is 2 minutes.
The HttpListener turns on this timer when the request has an entity body. The timer expiration is initially set to the configured value. When the HttpListener receives additional data indications on the request, it resets the timer to give the connection another interval.