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

Parameters

userId
Type: System..::..Guid
User Id.
parentId
Type: System..::..Nullable<(Of <(<'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

IAlbumBLL..::..GetMyPhotos(Guid, Nullable<(Of <<'(Guid>)>>), Int32, List<(Of <<'(Guid>)>>), String, String, Int32, Int32, Int32%)

See Also