HttpRequest.IsSecureConnection Propiedad

Definición

Obtiene un valor que indica si la conexión HTTP utiliza sockets seguros, es decir, HTTPS.

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

Valor de propiedad

true si la conexión es una conexión SSL; en caso contrario, false.

Ejemplos

En el ejemplo de código siguiente se determina si la IsSecureConnection propiedad está establecida en false. Si es así, la SuppressContent propiedad se establece en true para impedir que se envíe la respuesta.

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

Se aplica a