[This is preliminary documentation and is subject to change.]
Gets the personal reminder details of a particular reminder
created in the OfficeClip reminder application
for a particular user.
Namespace:
OfficeClip.DBLayer.FrameworkAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
C# |
---|
public DataSet GetPersonalReminderInfo( int userId, int reminderId ) |
Visual Basic (Declaration) |
---|
Public Function GetPersonalReminderInfo ( _ userId As Integer, _ reminderId As Integer _ ) As DataSet |
Visual C++ |
---|
public: DataSet^ GetPersonalReminderInfo( int userId, int reminderId ) |
Parameters
- userId
- Type: System..::.Int32
- reminderId
- Type: System..::.Int32
Return Value
DataSet containing all the reminder related information. This DataSet consists of a single DataTable with the following columns.- reminder_id (System.Int32)Id of the reminder.
- reminder_detail_id (System.Int32)Additinal id differentiating the reminders from a set of repeating reminders.
- remind_at (System.DateTime)Date and Time as per user's timezone when the user wants to be reminded.
- message (System.String)Content of the message which needs to be sent as reminder.
- status (System.String)Flag (Y/N) indicating whether the reminder has been sent or not.