Table of Contents

Interface IWebPageLinkedItemsDependencyAsyncRetriever

Namespace
CMS.Websites
Assembly
CMS.Websites.dll

Interface for retrieving linked content item of web pages.

public interface IWebPageLinkedItemsDependencyAsyncRetriever
Extension Methods

Methods

Get(IEnumerable<int>, int, CancellationToken)

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

Task<IEnumerable<string>> Get(IEnumerable<int> webPageIds, int maxLevel, CancellationToken cancellationToken = default)

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.

cancellationToken CancellationToken

Cancellation instruction.

Returns

Task<IEnumerable<string>>

Get(int, int, CancellationToken)

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

Task<IEnumerable<string>> Get(int webPageId, int maxLevel, CancellationToken cancellationToken = default)

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.

cancellationToken CancellationToken

Cancellation instruction.

Returns

Task<IEnumerable<string>>