SPClaimsAuthMembershipProvider.ChangePassword Method
Updates the password for a membership user.
Namespace: Microsoft.SharePoint.Administration.Claims
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Overrides Function ChangePassword ( _
name As String, _
oldPwd As String, _
newPwd As String _
) As Boolean
'Usage
Dim instance As SPClaimsAuthMembershipProvider
Dim name As String
Dim oldPwd As String
Dim newPwd As String
Dim returnValue As Boolean
returnValue = instance.ChangePassword(name, _
oldPwd, newPwd)
public override bool ChangePassword(
string name,
string oldPwd,
string newPwd
)
Parameters
name
Type: System.StringThe user for which the password is updated.
oldPwd
Type: System.StringThe current password for the user.
newPwd
Type: System.StringThe new password for the user.
Return Value
Type: System.Boolean
true if the password is updated successfully; otherwise, false.
Remarks
If the user can be found and the password is correct, this override updates the password for the specified user in the membership provider that is not an SPClaimsAuthMembershipProvider, and is used by forms-based authentication in the current application.
See Also
Reference
SPClaimsAuthMembershipProvider Class