.NET Framework Class Library
MembershipProvider.ChangePasswordQuestionAndAnswer Method
Processes a request to update the password question and answer for a membership user.
Assembly: System.Web.ApplicationServices (in System.Web.ApplicationServices.dll)
Syntax
Visual Basic
Public MustOverride Function ChangePasswordQuestionAndAnswer ( _ username As String, _ password As String, _ newPasswordQuestion As String, _ newPasswordAnswer As String _ ) As Boolean
C#
public abstract bool ChangePasswordQuestionAndAnswer( string username, string password, string newPasswordQuestion, string newPasswordAnswer )
Visual C++
public: virtual bool ChangePasswordQuestionAndAnswer( String^ username, String^ password, String^ newPasswordQuestion, String^ newPasswordAnswer ) abstract
F#
abstract ChangePasswordQuestionAndAnswer : username:string * password:string * newPasswordQuestion:string * newPasswordAnswer:string -> bool
Parameters
- username
- Type: System.String
The user to change the password question and answer for.
- password
- Type: System.String
The password for the specified user.
- newPasswordQuestion
- Type: System.String
The new password question for the specified user.
- newPasswordAnswer
- Type: System.String
The new password answer for the specified user.
Return Value
Type: System.Booleantrue if the password question and answer are updated successfully; otherwise, false.
Remarks
Takes, as input, a user name, a password, a password question and a password answer, and updates the password question and answer in the data source if the supplied user name and password are valid.
If the supplied user name and password are not valid, false is returned.
Examples
For an example of a MembershipProvider implementation, see Implementing a Profile Provider.
Version Information
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0.NET Framework Client Profile
Supported in: 4Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also