RequestConfigurationSendChunked Property |
When System.Net.HttpWebRequest.SendChunked is true , the request sends data to the destination in segments.
The destination server is required to support receiving chunked data. The default value is false.
Set this property to true only if the server specified by the System.Net.HttpWebRequest.
Address property of the current instance accepts chunked data (i.e. is HTTP/1.1 or greater in compliance).
If the server does not accept chunked data, buffer all data to be written and send a HTTP Content-Length header
with the buffered data.
Namespace: DownloaderAssembly: NeoAxis.Core.Editor (in NeoAxis.Core.Editor.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntaxpublic bool SendChunked { get; set; }Property Value
Boolean
Exceptions| Exception | Condition |
|---|
| InvalidOperationException |
A set operation was requested but data has already been written to the
request data stream.
|
See Also