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

Get all the Active bookmarks for a Category identified by a Category id for a particular group.

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

Syntax

C#
public DataSet GetBookmarksByCategory(
	int groupId,
	int categoryId
)
Visual Basic (Declaration)
Public Function GetBookmarksByCategory ( _
	groupId As Integer, _
	categoryId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetBookmarksByCategory(
	int groupId, 
	int categoryId
)

Parameters

groupId
Type: System..::.Int32
The unique id of the group.
categoryId
Type: System..::.Int32
Id of the Category for which the bookmarks have to be retrieved.

Return Value

DataSet containing all information related to the bookmarks of a particular Category for the currently selected group. This DataSet consists of a single DataTable with the following columns.
  • isGroup (System.String)Flag (Y/N) indicating whether a bookmark is a group bookmark or a private bookmark. Note that since this DataSet is returning only the bookmarks belonging to the currently selected group, the value of this flag will always be 'Y'.
  • htmlId (System.Int32)Id of the bookmark.
  • title (System.String)title of the bookmark.
  • url (System.String)Url of the web page which has been bookmarked.
  • descr (System.String)Description of the url giving information about the web page which has been bookmarked.
  • cdt (System.DateTime)Date and time when the bookmark has been created.
  • CreatedBy (System.Int32)Id of the user who has created the bookmark.
  • uname (System.String)Name of the user who has created the bookmark.

See Also