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

Returns a dataset of all the Forums belonging to the currentl selected Group.

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

Syntax

C#
public DataSet GetForumsList(
	bool allGroups,
	int userId,
	int groupId
)
Visual Basic (Declaration)
Public Function GetForumsList ( _
	allGroups As Boolean, _
	userId As Integer, _
	groupId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetForumsList(
	bool allGroups, 
	int userId, 
	int groupId
)

Parameters

allGroups
Type: System..::.Boolean
Flag to indicate whether to get Current selected group or all group where this user belongs
userId
Type: System..::.Int32
The unique user id.
groupId
Type: System..::.Int32
The unique group id.

Return Value

The Dataset containg the list of all the Forums belonging to the currently selected Group Dataset consists of single DataTable with the following columns.
  • ForumId (System.Int32) Id of the forum.
  • ForumName Name of the forum.

See Also