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

Inserts the Reminder into the Database.

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

Syntax

C#
public int InsReminderFromApplications(
	int userId,
	string message,
	Constants..::.ApplicationType applicationId,
	int id,
	string isGroup,
	DateTime remindAtDatetime,
	DateTime remindAtServertime,
	TimeZoneInfo serverTz
)
Visual Basic (Declaration)
Public Function InsReminderFromApplications ( _
	userId As Integer, _
	message As String, _
	applicationId As Constants..::.ApplicationType, _
	id As Integer, _
	isGroup As String, _
	remindAtDatetime As DateTime, _
	remindAtServertime As DateTime, _
	serverTz As TimeZoneInfo _
) As Integer
Visual C++
public:
int InsReminderFromApplications(
	int userId, 
	String^ message, 
	Constants..::.ApplicationType applicationId, 
	int id, 
	String^ isGroup, 
	DateTime remindAtDatetime, 
	DateTime remindAtServertime, 
	TimeZoneInfo^ serverTz
)

Parameters

userId
Type: System..::.Int32
Id of the user for whom the reminder is being created.
message
Type: System..::.String
The message which is sent with the reminder.
applicationId
Type: OfficeClip.BusinessLayer.Framework..::.Constants..::.ApplicationType
The application Id for which it is being created.
id
Type: System..::.Int32
The Id of the application entity (for e.g. event_id when it is for calendar).
isGroup
Type: System..::.String
Y if it is a group reminder and N if private Reminder.
remindAtDatetime
Type: System..::.DateTime
The user's datetime for which the reminder is to be created.
remindAtServertime
Type: System..::.DateTime
The server datetime for which the reminder is created.
serverTz
Type: OfficeClip.Utils..::.TimeZoneInfo
The server timezone

Return Value

See Also