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

Gets a list of all the applications for a particular group

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

Syntax

C#
public DataTable GetApplications(
	bool isAccess,
	int userId,
	int groupId
)
Visual Basic (Declaration)
Public Function GetApplications ( _
	isAccess As Boolean, _
	userId As Integer, _
	groupId As Integer _
) As DataTable
Visual C++
public:
DataTable^ GetApplications(
	bool isAccess, 
	int userId, 
	int groupId
)

Parameters

isAccess
Type: System..::.Boolean
if true returns the applications which the group has access to, if false, returns the applications which the group does not have access to
userId
Type: System..::.Int32
The unique id of the user
groupId
Type: System..::.Int32
The unique id for the group.

Return Value

The list containing the fields AppId and name which corresponds to the application id and name.

See Also