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

Sends an RSVP to all the group members of a group for an event.

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

Syntax

C#
public int SendRsvpToTheGroup(
	int eventId,
	string eventName,
	DateTime startDatetime,
	string url,
	int groupId,
	TimeZoneInfo serverTz,
	int userId
)
Visual Basic (Declaration)
Public Function SendRsvpToTheGroup ( _
	eventId As Integer, _
	eventName As String, _
	startDatetime As DateTime, _
	url As String, _
	groupId As Integer, _
	serverTz As TimeZoneInfo, _
	userId As Integer _
) As Integer
Visual C++
public:
int SendRsvpToTheGroup(
	int eventId, 
	String^ eventName, 
	DateTime startDatetime, 
	String^ url, 
	int groupId, 
	TimeZoneInfo^ serverTz, 
	int userId
)

Parameters

eventId
Type: System..::.Int32
Id of the event.
eventName
Type: System..::.String
Name of the event.
startDatetime
Type: System..::.DateTime
Date and Time when the event is going to start.
url
Type: System..::.String
Url of the web page giving additional information about the event or otherwise information related to the event.
groupId
Type: System..::.Int32
The unique id of the organization
serverTz
Type: OfficeClip.Utils..::.TimeZoneInfo
The server timezone
userId
Type: System..::.Int32
The unique id of the current user

Return Value

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

See Also