HttpResponse.SuppressContent Proprietà

Definizione

Ottiene o imposta un valore che indica se inviare il contenuto HTTP al client.

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

Valore della proprietà

true per sopprimere l'output; in caso contrario, false.

Esempio

Nell'esempio seguente viene verificato se la IsSecureConnection proprietà è impostata su false. In caso affermativo, la proprietà è impostata su true per impedire l'invio SuppressContent della risposta.

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

Si applica a