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

Returns all the user from a system who can be seen by a particular user.

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

Syntax

C#
public List<UserInfo> GetMembersList(
	int userId
)
Visual Basic (Declaration)
Public Function GetMembersList ( _
	userId As Integer _
) As List(Of UserInfo)
Visual C++
public:
List<UserInfo^>^ GetMembersList(
	int userId
)

Parameters

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

Return Value

DataTable containing the id, name and email Address of all the users who can be seen by the currently logged in user. This DataTable consists of the following two columns.
  • userId (System.Int32)Id of the user.
  • firstName (System.String)first name of the user.
  • lastName (System.String)last name of the user.
  • emailAddress (System.String)Email Address of the user.

See Also