ActiveDirectoryMembershipUser.IsApproved 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 that indicates whether the membership user can be authenticated.
public:
virtual property bool IsApproved { bool get(); void set(bool value); };
public override bool IsApproved { get; set; }
member this.IsApproved : bool with get, set
Public Overrides Property IsApproved As Boolean
Property Value
true
if the user can be authenticated; otherwise, false
.
Remarks
The ActiveDirectoryMembershipUser value for a membership user is checked during the call to ValidateUser by the ActiveDirectoryMembershipProvider. If the IsApproved property returns false
, the ValidateUser method returns false
even if the supplied user name and password are correct.
The IsApproved property is mapped to one of the following Active Directory attributes.
Active Directory | User-Account-Control |
Active Directory Application Mode | msDS-UserAccountDisabled |
This property cannot be remapped to another attribute.