Aracılığıyla paylaş


HttpResponse.SuppressContent Özellik

Tanım

İstemciye HTTP içeriğinin gönderilip gönderilmeydiğini belirten bir değer alır veya ayarlar.

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

Özellik Değeri

Boolean

true çıkışı engellemek için; aksi takdirde , false.

Örnekler

Aşağıdaki örnek özelliğin false olarak ayarlanıp ayarlanmadığını IsSecureConnection denetler. Bu durumda, yanıtın SuppressContent gönderilmesini durdurmak için özelliği true olarak ayarlanır.

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

Şunlara uygulanır