HttpResponse..::.BufferOutput 属性

C#
public bool BufferOutput { get; set; }

属性值

类型: System..::.Boolean

如果缓冲发送给客户端的输出,则为 true;否则为 false。默认值为 true

<!---->

下面的示例将响应的 ContentType 属性设置为 image/jpeg,调用 Clear 方法以移除可能附加到响应的其他内容,然后将 BufferOutput 属性设置为 true,这样就可以在将任何内容发送到请求客户端之前先处理整个页。

有关完整示例,请参见 HttpResponse 类。

// Set the page's content type to JPEG files
// and clear all response headers.
Response.ContentType = "image/jpeg";
Response.Clear();

// Buffer response so that page is sent
// after processing is complete.
Response.BufferOutput = true;

你可能感兴趣的:(C++,c,C#,J#)