HttpCookiesSection.RequireSSL プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SSL (Secure Sockets Layer) 接続が必要であるかどうかを示す値を取得または設定します。
この API は製品インフラストラクチャをサポートします。コードから直接使用するものではありません。
public:
property bool RequireSSL { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("requireSSL", DefaultValue=false)]
public bool RequireSSL { get; set; }
[<System.Configuration.ConfigurationProperty("requireSSL", DefaultValue=false)>]
member this.RequireSSL : bool with get, set
Public Property RequireSSL As Boolean
プロパティ値
SSL が有効な場合は true
。それ以外の場合は false
。 既定値は、false
です。
- 属性
例
次のコード例は、RequireSSL プロパティの使用方法を示しています。
// Get the current RequireSSL.
Boolean requireSSLValue =
httpCookiesSection.RequireSSL;
// Set the RequireSSL.
httpCookiesSection.RequireSSL =
false;
' Get the current RequireSSL.
Dim requireSSLValue As Boolean = _
httpCookiesSection.RequireSSL
' Set the RequireSSL.
httpCookiesSection.RequireSSL = _
False
注釈
このプロパティは RequireSSL 、RFC 2109 で説明されているように、セキュリティで保護された Cookie 属性の出力を有効または無効にします。 準拠しているブラウザーで使用する場合、Cookie は SSL/TLS を使用して接続経由でのみ返送されます。 既定値は、false
です。