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

Gets the list of photos for a particular album id.

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

Syntax

C#
public DataSet GetPhotoList(
	int albumId
)
Visual Basic (Declaration)
Public Function GetPhotoList ( _
	albumId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetPhotoList(
	int albumId
)

Parameters

albumId
Type: System..::.Int32

Return Value

The DataSet consisting of a single DataTable with the following columns.
  • did (System.Int32)Id of the photo document.
  • dname (System.String)Name of the photo document.
  • descr (System.String)Description of the photo.
  • sof (System.Decimal)Size of the photo file.
  • Cdate (System.DateTime)Date and time when the photo document was created.
  • cid (System.Int32)Id of the user who created the photo document.
  • uname (System.String)Name of the user who created the photo document.

See Also