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

Gets the user information from the user detail list.

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

Syntax

C#
public SqlDataReader GetUserInfoByUserListSP(
	string userList
)
Visual Basic (Declaration)
Public Function GetUserInfoByUserListSP ( _
	userList As String _
) As SqlDataReader
Visual C++
public:
SqlDataReader^ GetUserInfoByUserListSP(
	String^ userList
)

Parameters

userList
Type: System..::.String
A comma separated list of user ids

Return Value

SqlDataReader containing information related to a user. This SqlDataReader consists of the following columns.
  • UserId (System.Int32)Id of the user.
  • name (System.String)Name of the user.
  • emailAddress (System.String)Email Address of the user.
  • userId (System.Int32)userDetailId of the user.

Remarks

Make sure to Close the SqlDataReader after the use otherwise it will leave and connection open (till garbage collector releases the Data Reader). If not closed explicitly, the .Net framework might hang and slow down because of the number of open connections Limit might be reached.

See Also