Search Results for

    Show / Hide Table of Contents
    View Source

    Interface IIndexedEntitySearchService

    Performs entity search against search indexes.

    Namespace: Umbraco.Cms.Core.Services
    Assembly: Umbraco.Core.dll
    Syntax
    public interface IIndexedEntitySearchService
    Remarks

    Note that this service only supports entity types that are included in search indexes. By default this means documents, media and members.

    Methods

    View Source

    Search(UmbracoObjectTypes, String, Int32, Int32, Boolean)

    Declaration
    PagedModel<IEntitySlim> Search(UmbracoObjectTypes objectType, string query, int skip = 0, int take = 100, bool ignoreUserStartNodes = false)
    Parameters
    Type Name Description
    UmbracoObjectTypes objectType
    System.String query
    System.Int32 skip
    System.Int32 take
    System.Boolean ignoreUserStartNodes
    Returns
    Type Description
    PagedModel<IEntitySlim>
    View Source

    Search(UmbracoObjectTypes, String, Nullable<Guid>, Int32, Int32, Boolean)

    Declaration
    virtual PagedModel<IEntitySlim> Search(UmbracoObjectTypes objectType, string query, Guid? parentId, int skip = 0, int take = 100, bool ignoreUserStartNodes = false)
    Parameters
    Type Name Description
    UmbracoObjectTypes objectType
    System.String query
    System.Nullable<Guid> parentId
    System.Int32 skip
    System.Int32 take
    System.Boolean ignoreUserStartNodes
    Returns
    Type Description
    PagedModel<IEntitySlim>
    View Source

    Search(UmbracoObjectTypes, String, Nullable<Guid>, Nullable<IEnumerable<Guid>>, Int32, Int32, Boolean)

    Declaration
    virtual PagedModel<IEntitySlim> Search(UmbracoObjectTypes objectType, string query, Guid? parentId, IEnumerable<Guid>? contentTypeIds, int skip = 0, int take = 100, bool ignoreUserStartNodes = false)
    Parameters
    Type Name Description
    UmbracoObjectTypes objectType
    System.String query
    System.Nullable<Guid> parentId
    System.Nullable<IEnumerable<Guid>> contentTypeIds
    System.Int32 skip
    System.Int32 take
    System.Boolean ignoreUserStartNodes
    Returns
    Type Description
    PagedModel<IEntitySlim>
    View Source

    Search(UmbracoObjectTypes, String, Nullable<Guid>, Nullable<IEnumerable<Guid>>, Nullable<Boolean>, Int32, Int32, Boolean)

    Declaration
    virtual PagedModel<IEntitySlim> Search(UmbracoObjectTypes objectType, string query, Guid? parentId, IEnumerable<Guid>? contentTypeIds, bool? trashed, int skip = 0, int take = 100, bool ignoreUserStartNodes = false)
    Parameters
    Type Name Description
    UmbracoObjectTypes objectType
    System.String query
    System.Nullable<Guid> parentId
    System.Nullable<IEnumerable<Guid>> contentTypeIds
    System.Nullable<System.Boolean> trashed
    System.Int32 skip
    System.Int32 take
    System.Boolean ignoreUserStartNodes
    Returns
    Type Description
    PagedModel<IEntitySlim>
    • Improve this Doc
    • View Source
    In This Article
    • Methods
      • Search(UmbracoObjectTypes, String, Int32, Int32, Boolean)
      • Search(UmbracoObjectTypes, String, Nullable<Guid>, Int32, Int32, Boolean)
      • Search(UmbracoObjectTypes, String, Nullable<Guid>, Nullable<IEnumerable<Guid>>, Int32, Int32, Boolean)
      • Search(UmbracoObjectTypes, String, Nullable<Guid>, Nullable<IEnumerable<Guid>>, Nullable<Boolean>, Int32, Int32, Boolean)
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX