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

Updates the status of the reminder whether the reminder was sent successfuly or not. If not another attempt is made (Max 3 times) when the ProcessReminders method is called the next time.

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

Syntax

C#
public int UpdateReminderStatus(
	int reminderId,
	int reminderDetailId,
	bool statusOk
)
Visual Basic (Declaration)
Public Function UpdateReminderStatus ( _
	reminderId As Integer, _
	reminderDetailId As Integer, _
	statusOk As Boolean _
) As Integer
Visual C++
public:
int UpdateReminderStatus(
	int reminderId, 
	int reminderDetailId, 
	bool statusOk
)

Parameters

reminderId
Type: System..::.Int32
Id of the reminder for which the status has to be updated.
reminderDetailId
Type: System..::.Int32
Detail id corresponding to the reminder id.
statusOk
Type: System..::.Boolean
Flag (True/False) indicating whether the reminder was sent successfully or not.

Return Value

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

See Also