HttpRequest.IsSecureConnection プロパティ

定義

セキュリティ設定されたソケットを HTTP 接続で使用しているかどうか (つまり、HTTPS かどうか) を示す値を取得します。

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

プロパティ値

接続に SSL を使用する場合はtrue。それ以外の場合は false

次のコード例では、 プロパティが IsSecureConnection false に設定されているかどうかを判断します。 その場合、 プロパティは true に設定され、 SuppressContent 応答の送信を停止します。

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

適用対象