HttpResponse.ClearHeaders 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
버퍼 스트림에서 모든 헤더를 지웁니다.
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"