Retrieves a collection of file entities for the paging scenarios.

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

Syntax

C#
List<SnFileDTO> GetFiles(
	Guid parentId,
	int entityType,
	int pageIndex,
	int pageSize,
	out int recordCount
)
Visual Basic
Function GetFiles ( 
	parentId As Guid,
	entityType As Integer,
	pageIndex As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As List(Of SnFileDTO)
Visual C++
List<SnFileDTO^>^ GetFiles(
	Guid parentId, 
	int entityType, 
	int pageIndex, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetFiles : 
        parentId : Guid * 
        entityType : int * 
        pageIndex : int * 
        pageSize : int * 
        recordCount : int byref -> List<SnFileDTO> 

Parameters

parentId
Type: System..::..Guid
Parent enitity ID.
entityType
Type: System..::..Int32
Parent entity type.
pageIndex
Type: System..::..Int32
Page index.
pageSize
Type: System..::..Int32
Page size.
recordCount
Type: System..::..Int32%
Record count.

Return Value

Type: List<(Of <(<'SnFileDTO>)>)>
Collection of file entities that satisfy the criteria from the parameter list.

See Also