AnonymousIdentificationSection.CookieRequireSSL Property

Definition

Gets or sets a value indicating whether a Secure Sockets Layer (SSL) connection is required when transmitting authentication information.

C#
[System.Configuration.ConfigurationProperty("cookieRequireSSL", DefaultValue=false)]
public bool CookieRequireSSL { get; set; }

Property Value

true if an SSL connection is required; otherwise, false. The default is false.

Attributes

Examples

The following code example shows how to access the CookieRequireSSL property.

C#
// Get CookieRequireSSL.
bool cookieRequireSSL = 
    anonymousIdentificationSection.CookieRequireSSL;
Console.WriteLine("Cookie require SSL: {0}", 
    cookieRequireSSL.ToString());

Remarks

If CookieRequireSSL is true, a compliant browser does not return the cookie unless the connection is over SSL.

Napomena

When the anonymous identifier is stored within the URI path, rather than in a cookie, the CookieRequireSSL setting does not affect the behavior of the anonymous identification module. This is consistent with the behavior in forms authentication.

Applies to

Proizvod Verzije
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also