Interface IWebPageFolderRetriever
Interface for retrieving web page folders.
public interface IWebPageFolderRetriever
- Extension Methods
Methods
Retrieve(string, PathMatch, Action<DataQuerySettings>, CancellationToken)
Retrieves folders on path specified in pathMatch
on the website channel with the name websiteName
.
Task<IEnumerable<WebPageFolder>> Retrieve(string websiteName, PathMatch pathMatch, Action<DataQuerySettings> queryOptions = null, CancellationToken cancellationToken = default)
Parameters
websiteName
stringName of the website channel.
pathMatch
PathMatchWeb page tree path for which the query should be limited.
queryOptions
Action<DataQuerySettings>Settings to further constraint the query.
cancellationToken
CancellationTokenThe cancellation instruction.
Returns
- Task<IEnumerable<WebPageFolder>>
Retrieve(string, PathMatch[], Action<DataQuerySettings>, CancellationToken)
Retrieves folders on paths specified in pathMatches
on the website channel with the name websiteName
.
Task<IEnumerable<WebPageFolder>> Retrieve(string websiteName, PathMatch[] pathMatches, Action<DataQuerySettings> queryOptions = null, CancellationToken cancellationToken = default)
Parameters
websiteName
stringName of the website channel.
pathMatches
PathMatch[]Web page tree paths for which the query should be limited.
queryOptions
Action<DataQuerySettings>Settings to further constraint the query.
cancellationToken
CancellationTokenThe cancellation instruction.
Returns
- Task<IEnumerable<WebPageFolder>>