MembershipProvider.RequiresQuestionAndAnswer Property

Definition

Gets a value indicating whether the membership provider is configured to require the user to answer a password question for password reset and retrieval.

C#
public abstract bool RequiresQuestionAndAnswer { get; }

Property Value

true if a password answer is required for password reset and retrieval; otherwise, false. The default is true.

Examples

For an example of a MembershipProvider implementation, see Implementing a Profile Provider.

Remarks

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.

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

See also