Class Constants.DeploySelector
Contains the valid selector values.
Inheritance
object
Namespace: Umbraco.Cms.Core
Assembly: Umbraco.Core.dll
Syntax
public static class Constants.DeploySelector
Fields
View SourceChildrenOfThis
Selector value for selecting only the direct children of the current item.
Declaration
public const string ChildrenOfThis = "children"
Field Value
| Type | Description |
|---|---|
| string |
DescendantsOfThis
Selector value for selecting only the descendants of the current item.
Declaration
public const string DescendantsOfThis = "descendants"
Field Value
| Type | Description |
|---|---|
| string |
EntitiesOfType
Selector value for selecting all entities of a specific type.
Declaration
public const string EntitiesOfType = "entities-of-type"
Field Value
| Type | Description |
|---|---|
| string |
This
Selector value for selecting only the current item.
Declaration
public const string This = "this"
Field Value
| Type | Description |
|---|---|
| string |
ThisAndChildren
Selector value for selecting the current item and its direct children.
Declaration
public const string ThisAndChildren = "this-and-children"
Field Value
| Type | Description |
|---|---|
| string |
ThisAndDescendants
Selector value for selecting the current item and all its descendants.
Declaration
public const string ThisAndDescendants = "this-and-descendants"
Field Value
| Type | Description |
|---|---|
| string |