HttpResponse.ContentType プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
出力ストリームの 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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET