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

Gets the list of groups corresponding to a particular account.

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

Syntax

C#
public DataSet GetAccountGroupsList(
	int accountId
)
Visual Basic (Declaration)
Public Function GetAccountGroupsList ( _
	accountId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetAccountGroupsList(
	int accountId
)

Parameters

accountId
Type: System..::.Int32
The id corresponding to a particular account.

Return Value

DataSet containing a single DataTable with the following columns
  • GroupId (System.Int32) The id of the group
  • groupName (System.String) The name of the group

See Also