HttpRequest.IsSecureConnection Property

Definition

Gets a value indicating whether the HTTP connection uses secure sockets (that is, HTTPS).

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

Property Value

true if the connection is an SSL connection; otherwise, false.

Examples

The following code example determines whether the IsSecureConnection property is set to false. If it is, the SuppressContent property is set to true to stop the response from being sent.

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

Applies to