[This is preliminary documentation and is subject to change.]
Gets the personal reminder details of all reminders
created in the OfficeClip reminder application
for the currently logged in user.
Namespace:
OfficeClip.DBLayer.FrameworkAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
C# |
---|
public DataSet GetPersonalReminderDetailsByUser( int userId ) |
Visual Basic (Declaration) |
---|
Public Function GetPersonalReminderDetailsByUser ( _ userId As Integer _ ) As DataSet |
Visual C++ |
---|
public: DataSet^ GetPersonalReminderDetailsByUser( int userId ) |
Parameters
- userId
- 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.