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

Get the all the data corresponding to the users and userdetails from the database for a particular user in a particular group. This could be corresponding to an unregistered user also.

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

Syntax

C#
public UserInfo GetUserInfo(
	int userId,
	int groupId
)
Visual Basic (Declaration)
Public Function GetUserInfo ( _
	userId As Integer, _
	groupId As Integer _
) As UserInfo
Visual C++
public:
UserInfo^ GetUserInfo(
	int userId, 
	int groupId
)

Parameters

userId
Type: System..::.Int32
Id of the user.
groupId
Type: System..::.Int32
Id of the group.

Return Value

Instance of the UserInfo object containing all the information related to a particular user. UserInfo

See Also