Fetch album collection.

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

Syntax

C#
protected virtual EntityCollection<SnAlbumEntity> FetchAlbumCollection(
	Nullable<Guid> userId,
	Nullable<Guid> groupId,
	List<Guid> privacyLevelIds,
	bool fullPrefetchPath,
	int pageIndex,
	int pageSize,
	PagedCollectionContainer bindContainer
)
Visual Basic
Protected Overridable Function FetchAlbumCollection ( 
	userId As Nullable(Of Guid),
	groupId As Nullable(Of Guid),
	privacyLevelIds As List(Of Guid),
	fullPrefetchPath As Boolean,
	pageIndex As Integer,
	pageSize As Integer,
	bindContainer As PagedCollectionContainer
) As EntityCollection(Of SnAlbumEntity)
Visual C++
protected:
virtual EntityCollection<SnAlbumEntity^>^ FetchAlbumCollection(
	Nullable<Guid> userId, 
	Nullable<Guid> groupId, 
	List<Guid>^ privacyLevelIds, 
	bool fullPrefetchPath, 
	int pageIndex, 
	int pageSize, 
	PagedCollectionContainer^ bindContainer
)
F#
abstract FetchAlbumCollection : 
        userId : Nullable<Guid> * 
        groupId : Nullable<Guid> * 
        privacyLevelIds : List<Guid> * 
        fullPrefetchPath : bool * 
        pageIndex : int * 
        pageSize : int * 
        bindContainer : PagedCollectionContainer -> EntityCollection<SnAlbumEntity> 
override FetchAlbumCollection : 
        userId : Nullable<Guid> * 
        groupId : Nullable<Guid> * 
        privacyLevelIds : List<Guid> * 
        fullPrefetchPath : bool * 
        pageIndex : int * 
        pageSize : int * 
        bindContainer : PagedCollectionContainer -> EntityCollection<SnAlbumEntity> 

Parameters

userId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
User ID.
groupId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Group ID.
privacyLevelIds
Type: System.Collections.Generic..::..List<(Of <(<'Guid>)>)>
Privacy level ids
fullPrefetchPath
Type: System..::..Boolean
Include full prefetch path
pageIndex
Type: System..::..Int32
Page index.
pageSize
Type: System..::..Int32
Page size.
bindContainer
Type: MonoSoftware.MonoX.Caching..::..PagedCollectionContainer
Bind containder used for caching purposes.

Return Value

Type: EntityCollection<(Of <(<'SnAlbumEntity>)>)>
Album collection.

See Also