MembershipProvider.RequiresQuestionAndAnswer Property
.NET Framework 2.0
Gets a value indicating whether the membership provider is configured to require the user to answer a password question for password reset and retrieval.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public MustOverride ReadOnly Property RequiresQuestionAndAnswer As Boolean 'Usage Dim instance As MembershipProvider Dim value As Boolean value = instance.RequiresQuestionAndAnswer
/** @property */ public abstract boolean get_RequiresQuestionAndAnswer ()
public abstract function get RequiresQuestionAndAnswer () : boolean
Not applicable.
Property Value
true if a password answer is required for password reset and retrieval; otherwise, false. The default is true.A Boolean value specified in the configuration file (Web.config). The RequiresQuestionAndAnswer property indicates whether users must supply a password answer in order to retrieve their password using the GetPassword method, or reset their password using the ResetPassword method.
This property is read-only.
For an example of a MembershipProvider implementation, see Implementing a Profile Provider.
Community Additions
ADD
Show: