HttpResponse.SuppressContent プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > HttpResponse.SuppressContent プロパティの意味・解説 

HttpResponse.SuppressContent プロパティ

HTTP コンテンツクライアント送信するかどうかを示す値を取得または設定します

名前空間: System.Web
アセンブリ: System.Web (system.web.dll 内)
構文構文

Dim instance As HttpResponse
Dim value As Boolean

value = instance.SuppressContent

instance.SuppressContent = value
public bool SuppressContent { get;
 set; }
public:
property bool SuppressContent {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_SuppressContent ()

/** @property */
public void set_SuppressContent (boolean value)
public function get SuppressContent
 () : boolean

public function set SuppressContent
 (value : boolean)

プロパティ
出力しない場合trueそれ以外場合false

使用例使用例

IsSecureConnection プロパティfalse設定されているかどうか確認するコード例次に示します設定されている場合は、SuppressContent プロパティtrue設定して応答送信されないようにします。

' Clear headers to ensure none
' are sent to the requesting browser
' and set the content type.
Response.ClearHeaders()
Response.ContentType = "image/jpeg"

Dim height As Integer =
 150
Dim width As Integer = 250

' Create a Font and a PointF object to
' be used to draw text.
Dim fntText As New Font("Arial",
 8, FontStyle.Bold)
Dim pntText As New PointF(5,
 10)

' Create a Bitmap object, then use it to
' create a Graphics object.
Dim bmp As New Bitmap(width,
 height, PixelFormat.Format24bppRgb)
Dim g As Graphics = Graphics.FromImage(bmp)

' Specify that the image will be smoothed,
' then draw the rectangle and a String
' inside the rectangle.
g.SmoothingMode = SmoothingMode.AntiAlias
g.DrawRectangle(Pens.Blue, 0, 0, width, height)
g.DrawString("Response.ClearHeaders Test", fntText,
 SystemBrushes.WindowText, pntText)
g.FillRectangle(New SolidBrush(Color.Aqua), 0, 0, 250, 150)

' Save the Bitmap to the OutputStream property.
bmp.Save(Response.OutputStream, ImageFormat.Jpeg)

' Release the Graphics and Bitmap object
' and terminate the response.
g.Dispose()
bmp.Dispose()
Response.End()
// Clear headers to ensure none
// are sent to the requesting browser
// and set the content type.
Response.ClearHeaders();
Response.ContentType = "image/jpeg";
   
int height = 150;
int width = 250;

// Create a Font and a PointF object to
// be used to draw text.
Font fntText = new Font("Arial", 8, FontStyle.Bold);
PointF pntText = new PointF(5, 10);

// Create a Bitmap object, then use it to
// create a Graphics object.
Bitmap bmp = new Bitmap( 
  width, height, PixelFormat.Format24bppRgb);
Graphics g = Graphics.FromImage(bmp);

// Specify that the image will be smoothed,
// then draw the rectangle and a String
// inside the rectangle.
g.SmoothingMode = SmoothingMode.AntiAlias;
g.DrawRectangle(Pens.Blue, 0, 0, width, height);    
g.DrawString("Response.ClearHeaders Test", 
    fntText, SystemBrushes.WindowText, pntText);
g.FillRectangle(new SolidBrush(Color.Aqua), 0, 0, 250, 150);
    
// Save the Bitmap to the OutputStream property.
bmp.Save(Response.OutputStream, ImageFormat.Jpeg);

// Release the Graphics and Bitmap object
// and terminate the response.
g.Dispose();
bmp.Dispose();
Response.End();
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からHttpResponse.SuppressContent プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からHttpResponse.SuppressContent プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からHttpResponse.SuppressContent プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

HttpResponse.SuppressContent プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



HttpResponse.SuppressContent プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS