次の方法で共有


HttpCookiesSection.RequireSSL プロパティ

定義

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

プロパティ値

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 です。

適用対象

こちらもご覧ください