Interface IAssetItemDataProvider
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
intAssets library identifier.
folderPath
stringPath to the folder to load the assets from.
pageIndex
intIndex of page to get.
pageSize
intSize of the page to get.
allowedExtensions
stringAllowed 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.