Hide

YetaWF.Core Package Documentation

Display
Print

YetaWF.Core.Packages.Package.GetAvailablePackages Method

Returns all packages referenced by this YetaWF instance, i.e., the website (this excludes templates, utilities)

Class: YetaWF.Core.Packages.Package
Namespace: YetaWF.Core.Packages
Assembly: YetaWF.Core

Syntax

public static List<Package> GetAvailablePackages();
public static DataProviderGetRecords<Package> GetAvailablePackages(
    int skip,
    int take,
    List<DataProviderSortInfo>? sort,
    List<DataProviderFilterInfo>? filters );

Parameters

skip

The number of records to skip (paging support).

take

The number of records to retrieve (paging support). If more records are available they are dropped.

sort

A collection describing the sort order.

filters

A collection describing the filtering criteria.

Return Value

Returns information about the requested packages.

See Also YetaWF.Core.Packages.Package ClassYetaWF.Core Overview