CookieHandler.RequireSsl Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that specifies whether the cookie should be used only with SSL.
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
Property Value
true
if the cookie should only be used over an SSL connection; otherwise, false
. The default is true
.
Remarks
Controls whether the "Secure" flag in the Set-Cookie header is emitted for any cookies written. If this value is true
, the session cookies will only be available over HTTPS.
This property corresponds to the HttpCookie.Secure property.
The property can be initialized by specifying the requireSSL
attribute on the <cookieHandler> element in configuration.