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

Updates the meeting attendees information into the database. This method should generally be called while updating event information.

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

Syntax

C#
public int UpdateMeetingAttendees(
	EventInfo ei,
	ArrayList oldMeetingAttendeeList,
	bool sendEmailOnUpdate,
	TimeZoneInfo serverTz,
	int userId,
	int groupId
)
Visual Basic (Declaration)
Public Function UpdateMeetingAttendees ( _
	ei As EventInfo, _
	oldMeetingAttendeeList As ArrayList, _
	sendEmailOnUpdate As Boolean, _
	serverTz As TimeZoneInfo, _
	userId As Integer, _
	groupId As Integer _
) As Integer
Visual C++
public:
int UpdateMeetingAttendees(
	EventInfo^ ei, 
	ArrayList^ oldMeetingAttendeeList, 
	bool sendEmailOnUpdate, 
	TimeZoneInfo^ serverTz, 
	int userId, 
	int groupId
)

Parameters

ei
Type: OfficeClip.BusinessLayer.Desktop..::.EventInfo
Instance of an EventInfo object containing all the meeting attendees.
oldMeetingAttendeeList
Type: System.Collections..::.ArrayList
ArrayList of MeetingAttendeeInfo objects. OfficeClip.BusinessLayer.Desktop..::.MeetingAttendeeInfo
sendEmailOnUpdate
Type: System..::.Boolean
Determines if the email is sent on update
serverTz
Type: OfficeClip.Utils..::.TimeZoneInfo
The timezone of the server
userId
Type: System..::.Int32
The unique id of the current user
groupId
Type: System..::.Int32
The unique id of the organization

Return Value

0 if successful, -1 in case of an error.

See Also