HttpListenerResponse.SendChunked 属性

定义

获取或设置响应是否使用分块传输编码。

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

属性值

如果响应设置为使用 Chunked 传输编码,则为 true;否则为 false。 默认值为 false

注解

分块消息的正文由一系列区块组成。 每个区块由两个部分组成 - 区块数据的大小和实际数据。 设置为 true 时,将使用分块传输编码发送响应。

适用于