[This is preliminary documentation and is subject to change.]

Encrypts the password for a particular user using the MD5 algorithm and saves the password in the database.

Namespace:  OfficeClip.DBLayer.Account
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public void UpdatePassword(
	int groupId,
	int userId,
	string password
)
Visual Basic (Declaration)
Public Sub UpdatePassword ( _
	groupId As Integer, _
	userId As Integer, _
	password As String _
)
Visual C++
public:
void UpdatePassword(
	int groupId, 
	int userId, 
	String^ password
)

Parameters

groupId
Type: System..::.Int32
The unique id of the organization
userId
Type: System..::.Int32
The unique id of the user.
password
Type: System..::.String
The password in cleartext.

See Also