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

Gets all the bookmarks to be displayed on the homepage screen for a particular group.

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

Syntax

C#
public SqlDataReader GetGroupBookmarks(
	int groupId
)
Visual Basic (Declaration)
Public Function GetGroupBookmarks ( _
	groupId As Integer _
) As SqlDataReader
Visual C++
public:
SqlDataReader^ GetGroupBookmarks(
	int groupId
)

Parameters

groupId
Type: System..::.Int32
The unique id for the group.

Return Value

SqlDataReader containing all the information related group bookmarks. The SqlDataReader has the following columns.
  • url (System.String)Url of the web page which has been bookmarked.
  • title (System.String)title of the bookmark.

Remarks

Make sure to Close the SqlDataReader after the use otherwise it will leave and connection open (till garbage collector releases the Data Reader). If not closed explicitly, the .Net framework might hang and slow down because of the number of open connections Limit might be reached.

See Also