Table of Contents

Interface IAssetItemDataProvider

Namespace
Kentico.Xperience.Admin.Base
Assembly
Kentico.Xperience.Admin.Base.dll

Interface for providing assets data.

public interface IAssetItemDataProvider
Extension Methods

Methods

Get(int, string, int, int, string, CancellationToken?)

Gets a batch of asset items defined by the page index and size for given library identifier and folder path.

Task<AssetItemData> Get(int libraryIdentifier, string folderPath, int pageIndex, int pageSize, string allowedExtensions, CancellationToken? cancellationToken = null)

Parameters

libraryIdentifier int

Assets library identifier.

folderPath string

Path to the folder to load the assets from.

pageIndex int

Index of page to get.

pageSize int

Size of the page to get.

allowedExtensions string

Allowed file extensions to be loaded.

cancellationToken CancellationToken?

The cancellation instruction.

Returns

Task<AssetItemData>

Remarks

When pageSize is 0 paging is not applied and all assets are returned.