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

Gets all the members of the all the groups (only name and email Address) where the currenly logged in user belongs and all the memebers of all the address books visible to the user. All these members' and contacts' names and email addresses are merged in one unique list in order for the user to select from it to add to his/her mailing list.

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

Syntax

C#
public DataView GetMailingListSelectionList(
	int userId,
	int groupId,
	bool isAdmin
)
Visual Basic (Declaration)
Public Function GetMailingListSelectionList ( _
	userId As Integer, _
	groupId As Integer, _
	isAdmin As Boolean _
) As DataView
Visual C++
public:
DataView^ GetMailingListSelectionList(
	int userId, 
	int groupId, 
	bool isAdmin
)

Parameters

userId
Type: System..::.Int32
groupId
Type: System..::.Int32
isAdmin
Type: System..::.Boolean

Return Value

DataView containing the following two columns.
  • MemberUserId (System.Int32)Id of the member or address book entry selected to be added to the mailing list.
  • memberNameAndEmail (System.String)Name and email Address of the member or address book entry selected to be added to the mailing list.

See Also