Table of Contents

Interface IWebPageLinkedItemsDependencyRetriever

Namespace
CMS.Websites
Assembly
CMS.Websites.dll

Interface for retrieving linked content item of web pages.

public interface IWebPageLinkedItemsDependencyRetriever
Extension Methods

Methods

Get(IEnumerable<int>, int)

Gets cache dependency keys of linked content items for given web page up to a given level.

IEnumerable<string> Get(IEnumerable<int> webPageIds, int maxLevel)

Parameters

webPageIds IEnumerable<int>

Collection of IDs of the web pages for which the cache dependency keys are retrieved.

maxLevel int

Specifies the maximum level of linked items to include. If the value is negative or zero, only the linked items from the first level are retrieved.

Returns

IEnumerable<string>

Get(int, int)

Gets cache dependency keys of linked content items for given web page up to a given level.

IEnumerable<string> Get(int webPageId, int maxLevel)

Parameters

webPageId int

ID of the web page for which the cache dependency keys are retrieved.

maxLevel int

Specifies the maximum level of linked items to include. If the value is negative or zero, only the linked items from the first level are retrieved.

Returns

IEnumerable<string>