HttpResponse.SuppressContent Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
İ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
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