共用方式為


CookieHandler.RequireSsl 屬性

定義

取得或設定值,這個值會指定是否只應搭配 SSL 使用 Cookie。

public:
 virtual property bool RequireSsl { bool get(); void set(bool value); };
public virtual bool RequireSsl { get; set; }
member this.RequireSsl : bool with get, set
Public Overridable Property RequireSsl As Boolean

屬性值

如果 Cookie 只能透過 SSL 連線使用,則為 true,否則為false。 預設為 true

備註

控制是否針對任何寫入的 Cookie 發出 Set-Cookie 標頭中的 “Secure” 旗標。 如果此值為 true,則會話 Cookie 只能透過 HTTPS 使用。

這個屬性會對應至 HttpCookie.Secure 屬性。

屬性可以藉由在組態中的<cookieHandler>元素上指定 requireSSL 屬性來初始化。

適用於