HttpRequest.IsSecureConnection Proprietà

Definizione

Ottiene un valore che indica se per la connessione HTTP viene usato Secure Sockets, ovvero HTTPS.

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

Valore della proprietà

Boolean

true se la connessione è di tipo SSL; in caso contrario, false.

Esempio

Nell'esempio di codice seguente viene determinato se la IsSecureConnection proprietà è impostata su false. In caso affermativo, la SuppressContent proprietà è impostata su true per impedire l'invio della risposta.

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

Si applica a