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

Encrypts the user pin number (used for mobile access) 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 UpdatePin(
	int groupId,
	int userId,
	string pin
)
Visual Basic (Declaration)
Public Sub UpdatePin ( _
	groupId As Integer, _
	userId As Integer, _
	pin As String _
)
Visual C++
public:
void UpdatePin(
	int groupId, 
	int userId, 
	String^ pin
)

Parameters

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

See Also