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

Gets a list of all the meeting attendees for a particular event.

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

Syntax

C#
public ArrayList GetMeetingAttendees(
	int eventId
)
Visual Basic (Declaration)
Public Function GetMeetingAttendees ( _
	eventId As Integer _
) As ArrayList
Visual C++
public:
ArrayList^ GetMeetingAttendees(
	int eventId
)

Parameters

eventId
Type: System..::.Int32
The id of a Meeting type event.

Return Value

ArrayList of MeetingAttendeeInfo object. The MeetingAttendeeInfo object instance will have the userId, of all the attendees which are internal to OfficeClip system (i.e. they are OfficeClip members). If an attendee is not a member, the userId, field of that MeetingAttendeeInfo object will contain a negative random number.

See Also