Bagikan melalui


HttpRequest.IsSecureConnection Properti

Definisi

Mendapatkan nilai yang menunjukkan apakah koneksi HTTP menggunakan soket aman (yaitu HTTPS).

public:
 property bool IsSecureConnection { bool get(); };
public bool IsSecureConnection { get; }
member this.IsSecureConnection : bool
Public ReadOnly Property IsSecureConnection As Boolean

Nilai Properti

true jika koneksi adalah koneksi SSL; jika tidak, false.

Contoh

Contoh kode berikut menentukan apakah IsSecureConnection properti diatur ke false. Jika ya, SuppressContent properti diatur ke true untuk menghentikan respons dikirim.

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

Berlaku untuk