Click or drag to resize

RequestConfigurationTransferEncoding Property

A String that contains the value of the HTTP Transfer-encoding header. The default value is null. Clearing TransferEncoding by setting it to null has no effect on the value of SendChunked. Values assigned to the TransferEncoding property replace any existing contents. For additional information see section 14.41 of IETF RFC 2616 - HTTP/1.1.

Namespace: Downloader
Assembly: NeoAxis.Core.Editor (in NeoAxis.Core.Editor.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public string TransferEncoding { get; set; }

Property Value

String
Exceptions
ExceptionCondition
InvalidOperationExceptionTransferEncoding is set when SendChunked is false.
ArgumentExceptionTransferEncoding is set to the value "Chunked". This value is case insensitive.
See Also