PRELIMINARY INFORMATION - SUBJECT TO CHANGE
This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Processes a request to update the password for a membership user.

Namespace: Smartsite.Security.Authentication
Assembly:  Smartsite.Security (in Smartsite.Security.dll)

Syntax

C#Copy imageCopy Code
public override bool ChangePassword(
	string username,
	string oldPassword,
	string newPassword
)
Visual Basic (Declaration)Copy imageCopy Code
Public Overrides Function ChangePassword ( _
	username As , _
	oldPassword As , _
	newPassword As  _
) As 

Parameters

username
String
The user to update the password for.
oldPassword
String
The current password for the specified user.
newPassword
String
The new password for the specified user.

Return Value

true if the password was updated successfully; otherwise, false.

See Also

Advanced