Share via


SingleSignOnMembershipProvider.ChangePasswordQuestionAndAnswer Method (String, String, String, String)

 

This method supports the AD FS infrastructure and is not intended to be used directly from your code.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

public override bool ChangePasswordQuestionAndAnswer(
    string name,
    string password,
    string newPasswordQuestion,
    string newPasswordAnswer
)
public:
virtual bool ChangePasswordQuestionAndAnswer(
    String^ name,
    String^ password,
    String^ newPasswordQuestion,
    String^ newPasswordAnswer
) override
override ChangePasswordQuestionAndAnswer : 
        name:string *
        password:string *
        newPasswordQuestion:string *
        newPasswordAnswer:string -> bool
Public Overrides Function ChangePasswordQuestionAndAnswer (
    name As String,
    password As String,
    newPasswordQuestion As String,
    newPasswordAnswer As String
) As Boolean

Parameters

  • name
    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.Boolean

true if the call succeeded; otherwise, false.

See Also

SingleSignOnMembershipProvider Class
System.Web.Security.SingleSignOn Namespace

Return to top