HttpResponse.ClearHeaders 方法

定义

清除缓冲区流中的所有头。

public:
 void ClearHeaders();
public void ClearHeaders ();
member this.ClearHeaders : unit -> unit
Public Sub ClearHeaders ()

例外

发送 HTTP 标头后清除标头。

示例

以下示例调用 ClearHeaders 该方法以确保没有使用当前响应发送标头。 如果 ASP.NET 响应生成图像(例如 JPEG 文件),则此方法尤其重要。 在此示例中,该 ContentType 属性设置为 image/jpeg。

// Clear headers to ensure none
// are sent to the requesting browser
// and set the content type.
Response.ClearHeaders();
Response.ContentType = "image/jpeg";
' Clear headers to ensure none
' are sent to the requesting browser
' and set the content type.
Response.ClearHeaders()
Response.ContentType = "image/jpeg"

适用于

另请参阅