FormsAuthenticationConfiguration.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 indicating whether a Secure Sockets Layer (SSL) connection is required when transmitting authentication information.
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
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 RequireSSL property Refer to the code example in the FormsAuthenticationConfiguration class topic to learn how to get the section.
// Create a new FormsAuthentication object.
FormsAuthenticationConfiguration newformsAuthentication =
new FormsAuthenticationConfiguration();
' Create a new FormsAuthentication object.
Dim newformsAuthentication _
As New FormsAuthenticationConfiguration()
Remarks
If RequireSSL is true
, a Web application rejects all the forms authentication requests that do not use an SSL connection.