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

Gets the list of status of RSVP corresponding to all the attendees of a meeting.

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

Syntax

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

Parameters

eventId
Type: System..::.Int32
Id of the event of type meeting.

Return Value

DataSet containing the RSVP status information corresponding to meeting attendees. DataSet contains a single table with the following columns.
  • name (System.String) Name of the meeting attendee.
  • response (System.Int32) Value corresponding whether the RSVP is accepted, rejected or pending. Possible values are as follows: 1 = Accepted 2 = Rejected 0 = Pending

See Also