HttpResponse.ContentType プロパティ

定義

出力ストリームの HTTP MIME タイプを取得または設定します。

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

プロパティ値

出力ストリームの HTTP MIME タイプ。 既定値は "text/html" です。

例外

ContentType プロパティが null に設定されている。

次の例では、応答の ContentType プロパティを image/jpeg に設定し、 メソッドを Clear 呼び出して、応答にアタッチされている可能性がある他のコンテンツを削除し、 プロパティを true に設定 BufferOutput して、要求元のクライアントにコンテンツが送信される前に完全なページが処理されるようにします。

完全な例については、 クラスを 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

適用対象