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

Gets all the mailing lists created by the currently logged in user.

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

Syntax

C#
public DataTable GetMailingLists(
	int userId
)
Visual Basic (Declaration)
Public Function GetMailingLists ( _
	userId As Integer _
) As DataTable
Visual C++
public:
DataTable^ GetMailingLists(
	int userId
)

Parameters

userId
Type: System..::.Int32

Return Value

DataTable containing the name and id of the email mailing lists created by the Current user. This DataTable has the following two columns.
  • mailingListId (System.Int32)Id of the mailing list.
  • MailingListName (System.String)Name of the mailing list.

See Also