Search Results for

    Show / Hide Table of Contents
    View Source

    Interface IRecycleBinNavigationQueryService

    Placeholder for sharing logic between the document and media navigation services for querying the recycle bin navigation structure.

    Namespace: Umbraco.Cms.Core.Services.Navigation
    Assembly: Umbraco.Core.dll
    Syntax
    public interface IRecycleBinNavigationQueryService

    Methods

    View Source

    TryGetAncestorsKeysInBin(Guid, out IEnumerable<Guid>)

    Declaration
    bool TryGetAncestorsKeysInBin(Guid childKey, out IEnumerable<Guid> ancestorsKeys)
    Parameters
    Type Name Description
    Guid childKey
    IEnumerable<Guid> ancestorsKeys
    Returns
    Type Description
    System.Boolean
    View Source

    TryGetChildrenKeysInBin(Guid, out IEnumerable<Guid>)

    Declaration
    bool TryGetChildrenKeysInBin(Guid parentKey, out IEnumerable<Guid> childrenKeys)
    Parameters
    Type Name Description
    Guid parentKey
    IEnumerable<Guid> childrenKeys
    Returns
    Type Description
    System.Boolean
    View Source

    TryGetDescendantsKeysInBin(Guid, out IEnumerable<Guid>)

    Declaration
    bool TryGetDescendantsKeysInBin(Guid parentKey, out IEnumerable<Guid> descendantsKeys)
    Parameters
    Type Name Description
    Guid parentKey
    IEnumerable<Guid> descendantsKeys
    Returns
    Type Description
    System.Boolean
    View Source

    TryGetDescendantsKeysOrSelfKeysInBin(Guid, out IEnumerable<Guid>)

    Declaration
    virtual bool TryGetDescendantsKeysOrSelfKeysInBin(Guid childKey, out IEnumerable<Guid> descendantsOrSelfKeys)
    Parameters
    Type Name Description
    Guid childKey
    IEnumerable<Guid> descendantsOrSelfKeys
    Returns
    Type Description
    System.Boolean
    View Source

    TryGetParentKeyInBin(Guid, out Nullable<Guid>)

    Declaration
    bool TryGetParentKeyInBin(Guid childKey, out Guid? parentKey)
    Parameters
    Type Name Description
    Guid childKey
    System.Nullable<Guid> parentKey
    Returns
    Type Description
    System.Boolean
    View Source

    TryGetSiblingsKeysInBin(Guid, out IEnumerable<Guid>)

    Declaration
    bool TryGetSiblingsKeysInBin(Guid key, out IEnumerable<Guid> siblingsKeys)
    Parameters
    Type Name Description
    Guid key
    IEnumerable<Guid> siblingsKeys
    Returns
    Type Description
    System.Boolean
    • Improve this Doc
    • View Source
    In This Article
    • Methods
      • TryGetAncestorsKeysInBin(Guid, out IEnumerable<Guid>)
      • TryGetChildrenKeysInBin(Guid, out IEnumerable<Guid>)
      • TryGetDescendantsKeysInBin(Guid, out IEnumerable<Guid>)
      • TryGetDescendantsKeysOrSelfKeysInBin(Guid, out IEnumerable<Guid>)
      • TryGetParentKeyInBin(Guid, out Nullable<Guid>)
      • TryGetSiblingsKeysInBin(Guid, out IEnumerable<Guid>)
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX