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

Gets the password string for a particular user, this string is used to compare the user's password to allow user entry to the system. The string being compared to and the password value obtained from the database both are in one way encrypted format.

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

Syntax

C#
public string GetPassword(
	int userId
)
Visual Basic (Declaration)
Public Function GetPassword ( _
	userId As Integer _
) As String
Visual C++
public:
String^ GetPassword(
	int userId
)

Parameters

userId
Type: System..::.Int32
The unique id for the user.

Return Value

The encrypted user password string.

See Also