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#
public virtual List<SnFileDTO> GetFiles(
	Guid parentId,
	int entityType,
	List<Guid> privacyLevelIds,
	string searchPhrase,
	string tags,
	int pageIndex,
	int pageSize,
	out int recordCount
)
Visual Basic
Public Overridable Function GetFiles ( 
	parentId As Guid,
	entityType As Integer,
	privacyLevelIds As List(Of Guid),
	searchPhrase As String,
	tags As String,
	pageIndex As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As List(Of SnFileDTO)
Visual C++
public:
virtual List<SnFileDTO^>^ GetFiles(
	Guid parentId, 
	int entityType, 
	List<Guid>^ privacyLevelIds, 
	String^ searchPhrase, 
	String^ tags, 
	int pageIndex, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetFiles : 
        parentId : Guid * 
        entityType : int * 
        privacyLevelIds : List<Guid> * 
        searchPhrase : string * 
        tags : string * 
        pageIndex : int * 
        pageSize : int * 
        recordCount : int byref -> List<SnFileDTO> 
override GetFiles : 
        parentId : Guid * 
        entityType : int * 
        privacyLevelIds : List<Guid> * 
        searchPhrase : string * 
        tags : string * 
        pageIndex : int * 
        pageSize : int * 
        recordCount : int byref -> List<SnFileDTO> 

Parameters

parentId
Type: System..::..Guid
Parent enitity ID.
entityType
Type: System..::..Int32
Parent entity type.
privacyLevelIds
Type: System.Collections.Generic..::..List<(Of <(<'Guid>)>)>
Privacy level ids
searchPhrase
Type: System..::..String
Search phrase
tags
Type: System..::..String
Tag filter in csv format
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.

Implements

IFileBLL..::..GetFiles(Guid, Int32, List<(Of <<'(Guid>)>>), String, String, Int32, Int32, Int32%)

See Also