Class NoopApiContentQueryService
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.DeliveryApi
Assembly: Umbraco.Core.dll
Syntax
public sealed class NoopApiContentQueryService : IApiContentQueryService
Methods
View SourceExecuteQuery(String, IEnumerable<String>, IEnumerable<String>, ProtectedAccess, Int32, Int32)
Returns an attempt with a collection of item ids that passed the search criteria as a paged model.
Declaration
public Attempt<PagedModel<Guid>, ApiContentQueryOperationStatus> ExecuteQuery(string fetch, IEnumerable<string> filters, IEnumerable<string> sorts, ProtectedAccess protectedAccess, int skip, int take)
Parameters
Type | Name | Description |
---|---|---|
System. |
fetch | Optional fetch query parameter value. |
IEnumerable<System. |
filters | Optional filter query parameters values. |
IEnumerable<System. |
sorts | Optional sort query parameters values. |
Protected |
protectedAccess | Defines the limitations for querying protected content. |
System. |
skip | The amount of items to skip. |
System. |
take | The amount of items to take. |
Returns
Type | Description |
---|---|
Attempt<Paged |
A paged model of item ids that are returned after applying the search queries in an attempt. |