Click or drag to resize

IAssetFolderAssets Method


Retrieves a collection of the assets inside of the folder.

Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntax
IEnumerable<IAsset> Assets(
	out int count,
	int pageSize = -1,
	int startIndex = -1
)

Parameters

count  Int32
Total count of all child assets.
pageSize  Int32  (Optional)
Number of entries to return. If not provided, returns all entries.
startIndex  Int32  (Optional)
Starting index of entries. If not provided, starts from the first entry.

Return Value

IEnumerableIAsset
Collection of child assets.
Example
Example of removing all assets in a folder in a custom hook:
C#
var assetFolder = session.Site.AssetFolder("af/114");
int c;
foreach (var child in assetFolder.Assets(out c))
{
    assetFolder.RemoveAsset(child);
}
See Also