HttpRequest.IsSecureConnection プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
セキュリティ設定されたソケットを 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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET