Raised when get files for photo list is triggered.

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

Syntax

C#
protected virtual List<SnFileDTO> OnGetFiles(
	Nullable<Guid> parentId,
	List<Guid> privacyLevelIds,
	int pageIndex,
	int pageSize,
	out int recordCount
)
Visual Basic
Protected Overridable Function OnGetFiles ( 
	parentId As Nullable(Of Guid),
	privacyLevelIds As List(Of Guid),
	pageIndex As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As List(Of SnFileDTO)
Visual C++
protected:
virtual List<SnFileDTO^>^ OnGetFiles(
	Nullable<Guid> parentId, 
	List<Guid>^ privacyLevelIds, 
	int pageIndex, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract OnGetFiles : 
        parentId : Nullable<Guid> * 
        privacyLevelIds : List<Guid> * 
        pageIndex : int * 
        pageSize : int * 
        recordCount : int byref -> List<SnFileDTO> 
override OnGetFiles : 
        parentId : Nullable<Guid> * 
        privacyLevelIds : List<Guid> * 
        pageIndex : int * 
        pageSize : int * 
        recordCount : int byref -> List<SnFileDTO> 

Parameters

parentId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Parent enitity ID.
privacyLevelIds
Type: System.Collections.Generic..::..List<(Of <(<'Guid>)>)>
Privacy level ids
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