ActiveDirectoryMembershipProvider.CurrentConnectionProtection Property
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 the current level of security being used to protect communications with the server.
public:
property System::Web::Security::ActiveDirectoryConnectionProtection CurrentConnectionProtection { System::Web::Security::ActiveDirectoryConnectionProtection get(); };
public System.Web.Security.ActiveDirectoryConnectionProtection CurrentConnectionProtection { get; }
member this.CurrentConnectionProtection : System.Web.Security.ActiveDirectoryConnectionProtection
Public ReadOnly Property CurrentConnectionProtection As ActiveDirectoryConnectionProtection
One of the ActiveDirectoryConnectionProtection values.
An attempt to access the CurrentConnectionProtection property was made before the ActiveDirectoryMembershipProvider instance was initialized.
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>
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.
Product | Versions |
---|---|
.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 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: