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

Gets the document details for the folder

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

Syntax

C#
protected SqlDataReader getFolderDocuments(
	int folderId
)
Visual Basic (Declaration)
Protected Function getFolderDocuments ( _
	folderId As Integer _
) As SqlDataReader
Visual C++
protected:
SqlDataReader^ getFolderDocuments(
	int folderId
)

Parameters

folderId
Type: System..::.Int32
The id of the folder

Return Value

The following values are returned with the following columns.
  • docName (System.String) Name of the document.
  • docId (System.Int32) Id of the document.
  • createdId (System.Int32) Id of the user who created the document.

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