HttpResponse.ClearHeaders Metodo

Definizione

Cancella tutte le intestazioni dal flusso del buffer.

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

Eccezioni

Le intestazioni vengono cancellate dopo l'invio delle intestazioni HTTP.

Esempio

Nell'esempio seguente viene chiamato il ClearHeaders metodo per assicurarsi che nessuna intestazione venga inviata con la risposta corrente. Questa tecnica può essere particolarmente importante se la risposta ASP.NET genera un'immagine, ad esempio un file JPEG. In questo esempio la ContentType proprietà è impostata su 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"

Si applica a

Vedi anche