Table of Contents

Interface ILinkedItemsDependencyAsyncRetriever

Namespace
CMS.ContentEngine
Assembly
CMS.ContentEngine.dll

Interface for retrieving linked content item of content items.

public interface ILinkedItemsDependencyAsyncRetriever
Extension Methods

Methods

Get(IEnumerable<int>, int, CancellationToken)

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

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

Parameters

contentItemIds IEnumerable<int>

Collection of IDs of the content items 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 content item up to a given level.

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

Parameters

contentItemId int

ID of the content item 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>>