HttpResponse.SuppressContent プロパティ

定義

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

public:
 property bool SuppressContent { bool get(); void set(bool value); };
public bool SuppressContent { get; set; }
member this.SuppressContent : bool with get, set
Public Property SuppressContent As Boolean

プロパティ値

出力しない場合は true。それ以外の場合は false

次の例では、 プロパティが IsSecureConnection false に設定されているかどうかを確認します。 その場合、 プロパティは true に設定され、 SuppressContent 応答の送信を停止します。

// Check whether the request is sent
// over HTTPS. If not, do not send 
// content to the client.    
if (!Request.IsSecureConnection)
{
    Response.SuppressContent = true;
}
' Check whether the request is sent
' over HTTPS. If not, do not return
' content to the client.
If (Request.IsSecureConnection = False) Then      
    Response.SuppressContent = True
End If

適用対象