Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 ChangePassword(
string name,
string oldPassword,
string newPassword
)
public:
virtual bool ChangePassword(
String^ name,
String^ oldPassword,
String^ newPassword
) override
override ChangePassword :
name:string *
oldPassword:string *
newPassword:string -> bool
Public Overrides Function ChangePassword (
name As String,
oldPassword As String,
newPassword As String
) As Boolean
Parameters
name
Type: System.StringThe name of the user to update the password for.
oldPassword
Type: System.StringThe current password for the specified user.
newPassword
Type: System.StringThe new password 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