View Source
Interface IRecycleBinNavigationQueryService
Placeholder for sharing logic between the document and media navigation services
for querying the recycle bin navigation structure.
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 |
|