HttpRequest.IsSecureConnection Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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à
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