Compartilhar via


HttpResponse.ContentType Propriedade

Definição

Obtém ou define o tipo MIME de HTTP do fluxo de saída.

public:
 property System::String ^ ContentType { System::String ^ get(); void set(System::String ^ value); };
public string ContentType { get; set; }
member this.ContentType : string with get, set
Public Property ContentType As String

Valor da propriedade

String

O tipo MIME de HTTP do fluxo de saída. O valor padrão é "text/html".

Exceções

A propriedade ContentType está definida como null.

Exemplos

O exemplo a seguir define a ContentType propriedade para a resposta à imagem/jpeg, chama o Clear método para remover outro conteúdo que pode ser anexado à resposta e, em seguida, define a BufferOutput propriedade como true para que a página completa seja processada antes que qualquer conteúdo seja enviado ao cliente solicitante.

Para obter um exemplo completo, consulte a HttpResponse classe.

    // 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

Aplica-se a