[This is preliminary documentation and is subject to change.]
            Inserts the meeting attendees of an event into the database and sends a notification about the meeting to all the attendees.
            
    Namespace: 
   OfficeClip.DBLayer.DesktopAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
| C# | 
|---|
public int InsertMeetingAttendees( EventInfo ei, bool isFromUpdate, int indx, bool sendEmailOnUpdate, TimeZoneInfo serverTz, int userId, int groupId )  | 
| Visual Basic (Declaration) | 
|---|
Public Function InsertMeetingAttendees ( _ ei As EventInfo, _ isFromUpdate As Boolean, _ indx As Integer, _ sendEmailOnUpdate As Boolean, _ serverTz As TimeZoneInfo, _ userId As Integer, _ groupId As Integer _ ) As Integer  | 
| Visual C++ | 
|---|
public: int InsertMeetingAttendees( EventInfo^ ei, bool isFromUpdate, int indx, 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. 
- isFromUpdate
 - Type: System..::.Boolean
Flag (True/False) indicating whether this method is called from Update of an event. 
- indx
 - Type: System..::.Int32
Sequential Index corresponding each of the repeating event. 
- sendEmailOnUpdate
 - Type: System..::.Boolean
Shows whether the email needs to be sent on event 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 
