Returns a list of the user's most recent passwords ordered by DATE (DESC/RECENT)

Namespace: Caisis.DataAccess
Assembly: Caisis.DataAccess (in Caisis.DataAccess.dll) Version: 4.0.4947.22627

Syntax

C#
public DataTable GetUserRecentPasswords(
	string userName,
	int count
)
Visual Basic
Public Function GetUserRecentPasswords ( 
	userName As String,
	count As Integer
) As DataTable
Visual C++
public:
DataTable^ GetUserRecentPasswords(
	String^ userName, 
	int count
)

Parameters

userName
Type: System..::..String
the name of the user to query
count
Type: System..::..Int32
the number of recent password to obtain

Return Value

Type: DataTable
A datatable of UserPassword and LoggedTime

See Also