ActiveDirectoryMembershipProvider.CurrentConnectionProtection Property
Assembly: System.Web (in system.web.dll)
/** @property */ public ActiveDirectoryConnectionProtection get_CurrentConnectionProtection ()
public function get CurrentConnectionProtection () : ActiveDirectoryConnectionProtection
Not applicable.
Property Value
One of the ActiveDirectoryConnectionProtection values.| Exception type | Condition |
|---|---|
|
An attempt to access the CurrentConnectionProtection property was made before the ActiveDirectoryMembershipProvider instance was initialized. |
The CurrentConnectionProtection property indicates the current level of security that the ActiveDirectoryMembershipProvider instance is configured to use. The CurrentConnectionProtection property is based on the connnectionProtection attribute set with the add Element for providers for membership (ASP.NET Settings Schema) in the application configuration file.
The connectionProtection attribute can only be set to None or SignAndSeal in the configuration file.
See the ActiveDirectoryMembershipProvider class topic for more information about connection strings.
The following code example shows a Web.config entry that configures an ActiveDirectoryMembershipProvider instance to use the SSL security protocol to connect to an Active Directory server.
<configuration>
<connectionStrings>
<add name="ADService" connectionString="LDAP://ldapServer/" />
</connectionStrings>
<system.web>
<membership defaultProvider="AspNetActiveDirectoryMembershipProvider">
<providers>
<add name="AspNetActiveDirectoryMembershipProvider"
type="System.Web.Security.ActiveDirectoryMembershipProvider,
System.Web, Version=2.0.3600, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a"
connectionProtection="SignAndSeal" />
</providers>
</membership>
</system.web>
</configuration>