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

Get the CSV formatted text for the selected fields from the users's details corresponding to a particular group.

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

Syntax

C#
public string ExportCsv(
	int groupId,
	ArrayList fields,
	bool isExternal
)
Visual Basic (Declaration)
Public Function ExportCsv ( _
	groupId As Integer, _
	fields As ArrayList, _
	isExternal As Boolean _
) As String
Visual C++
public:
String^ ExportCsv(
	int groupId, 
	ArrayList^ fields, 
	bool isExternal
)

Parameters

groupId
Type: System..::.Int32
The unique id for the group.
fields
Type: System.Collections..::.ArrayList
The list of all the fields from the user details for which the data should be returned in a comma separated format.
isExternal
Type: System..::.Boolean
Is the user an extranet user

Return Value

The comman separated values of the users details each line per user.

See Also