Udostępnij za pośrednictwem


HttpResponse.SuppressContent Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy wysyłać zawartość HTTP do klienta.

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

Wartość właściwości

true pomijanie danych wyjściowych; w przeciwnym razie , false.

Przykłady

Poniższy przykład sprawdza, czy właściwość jest ustawiona IsSecureConnection na wartość false. Jeśli tak jest, właściwość jest ustawiona na wartość true, SuppressContent aby zatrzymać wysyłanie odpowiedzi.

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

Dotyczy