Click or drag to resize

DatabaseAuthenticationProviderChangePassword Method

Changes the password for the user. Use ChangeUserPassword(IAppContext, String, String, String) if you need the new password in a form (raw vs. encrypted) for storing in Password.

Namespace:  NetQuarry.Security
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public override void ChangePassword(
	IAppContext appContext,
	string userID,
	string oldPWD,
	string newPWD
)

Parameters

appContext
Type: NetQuarryIAppContext
The current IAppContext object.
userID
Type: SystemString
The user id
oldPWD
Type: SystemString
The old (current) password value
newPWD
Type: SystemString
The new password value

Implements

IAuthenticationProviderChangePassword(IAppContext, String, String, String)
See Also