Retrieves all documents for a particular page.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
EntityCollection<DocumentEntity> GetDocumentsOnPage(
	Guid pageId
)
Visual Basic
Function GetDocumentsOnPage ( 
	pageId As Guid
) As EntityCollection(Of DocumentEntity)
Visual C++
EntityCollection<DocumentEntity^>^ GetDocumentsOnPage(
	Guid pageId
)
F#
abstract GetDocumentsOnPage : 
        pageId : Guid -> EntityCollection<DocumentEntity> 

Parameters

pageId
Type: System..::..Guid
Page ID.

Return Value

Type: EntityCollection<(Of <(<'DocumentEntity>)>)>
Collection of documents from a page.

See Also