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

Gets all the reminders created for a specific application associated with a specific object within that application.

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

Syntax

C#
public DataSet GetAllApplicationReminders(
	int applicationId,
	int id
)
Visual Basic (Declaration)
Public Function GetAllApplicationReminders ( _
	applicationId As Integer, _
	id As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetAllApplicationReminders(
	int applicationId, 
	int id
)

Parameters

applicationId
Type: System..::.Int32
Id of the application related to which all the reminders are to be retrieved.
id
Type: System..::.Int32
Id of the object in that application associated with which the specific reminder are to be retrieved.

Return Value

DataSet containing all the appplication related reminders. This DataSet consists of a single DataTable with the following columns.
  • UserId (System.Int32)Id of the user for whom the reminder is created.
  • reminderId (System.Int32)Id of the reminder.
  • reminderDetailId (System.Int32)Secondary id for the reminder distinguishing between the set of repeating reminders.
  • remindAt (System.DateTime)Date and Time in user's timezone when the user wants the reminder to be sent.
  • remindAtServertime (System.DateTime)Date and Time in the server when the reminder should be sent so that it reaches at the date and time specified by user in his/her respective timezone.
  • isGroup (System.Int32)Flag (Y/N) indicating whether this reminder was created to send reminder messages to all the members of a particular group.

See Also