ActiveDirectoryMembershipProvider.MinRequiredNonAlphanumericCharacters Property
In this article
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 the minimum number of special characters that must be present in a valid password.
public:
virtual property int MinRequiredNonAlphanumericCharacters { int get(); };
public override int MinRequiredNonAlphanumericCharacters { get; }
member this.MinRequiredNonAlphanumericCharacters : int
Public Overrides ReadOnly Property MinRequiredNonAlphanumericCharacters As Integer
The minimum number of special characters that must be present in a valid password.
The MinRequiredNonAlphanumericCharacters property is accessed before the ActiveDirectoryMembershipProvider instance is initialized.
The following example shows the membership Element (ASP.NET Settings Schema) configuration element in the system.web
section of the application's Web.config file. It specifies that the application use an instance of the ActiveDirectoryMembershipProvider class to provide membership services, and sets the minRequiredNonalphanumericCharacters
attribute to one character.
<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"
minRequiredNonalphanumericCharacters = "1" />
</providers>
</membership>
</system.web>
</configuration>
The MinRequiredNonAlphanumericCharacters property returns the minimum number of special, non-alphanumeric characters that must be entered to create a valid password.
The MinRequiredNonAlphanumericCharacters property value is set in the application configuration using the minRequiredNonalphanumericCharacters
attribute of the membership Element (ASP.NET Settings Schema) configuration element.
A non-alphanumeric character is a character for which the IsLetterOrDigit method returns false
.
Applies to
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: