HttpResponse.BufferOutput 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示是否缓冲输出并在处理完整个页之后发送它。
public:
property bool BufferOutput { bool get(); void set(bool value); };
public bool BufferOutput { get; set; }
member this.BufferOutput : bool with get, set
Public Property BufferOutput As Boolean
属性值
如果缓冲了发送到客户端的输出,则为 true
;否则为 false
。 默认值为 true
。
示例
以下示例设置 ContentType image/jpeg 响应的 属性,调用 Clear 方法删除可能附加到响应的其他内容,然后将 属性设置为 BufferOutput true,以便在将任何内容发送到请求客户端之前处理整个页面。
有关完整示例,请参阅 HttpResponse 类。
// Set the page's content type to JPEG files
// and clears all content output from the buffer stream.
Response.ContentType = "image/jpeg";
Response.Clear();
// Buffer response so that page is sent
// after processing is complete.
Response.BufferOutput = true;
' Set the page's content type to JPEG files
' and clears all content output from the buffer stream.
Response.ContentType = "image/jpeg"
Response.Clear()
' Buffer response so that page is sent
' after processing is complete.
Response.BufferOutput = True