HttpListenerResponse.SendChunked Propriedade
Definição
Obtém ou define se a resposta usa a codificação de transferência em bloco.Gets or sets whether the response uses chunked transfer encoding.
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
Valor da propriedade
true se a resposta estiver definida para usar a codificação de transferência em bloco; caso contrário, false.true if the response is set to use chunked transfer encoding; otherwise, false. O padrão é false.The default is false.
Comentários
O corpo de uma mensagem em partes é composto de uma série de partes.The body of a chunked message is made up of a series of chunks. Cada parte é composta por duas partes: o tamanho dos dados da parte e dos dados reais.Each chunk comprises of two parts - the size of the chunk data and the actual data. Quando definido como true, a resposta é enviada usando a codificação de transferência em partes.When set to true the response is sent using chunked transfer encoding.