Udostępnij za pośrednictwem


HttpRequest.IsSecureConnection Właściwość

Definicja

Pobiera wartość wskazującą, czy połączenie HTTP używa bezpiecznych gniazd (czyli HTTPS).

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

Wartość właściwości

true jeśli połączenie jest połączeniem SSL; w przeciwnym razie , false.

Przykłady

Poniższy przykład kodu określa, czy IsSecureConnection właściwość jest ustawiona 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