HttpResponse.SuppressContent Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob HTTP-Inhalt an den Client gesendet werden soll, oder legt diesen fest.

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

Eigenschaftswert

true, um die Ausgabe zu unterdrücken, andernfalls false.

Beispiele

Im folgenden Beispiel wird überprüft, ob die IsSecureConnection Eigenschaft auf false festgelegt ist. Wenn dies der Fall ist, wird die SuppressContent -Eigenschaft auf TRUE festgelegt, um das Senden der Antwort zu beenden.

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

Gilt für: