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

Resets the password in the database and returns the password in cleartext as the output. This method is required because it will encourage reuse of this part for both reset password and Reinvite members

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

Syntax

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

Parameters

groupId
Type: System..::.Int32
The unique id of the organization
userId
Type: System..::.Int32
the user id of the user
pw
Type: System..::.String
The password to be explicity set

Return Value

The new password in cleartext

See Also