2017-05-12 14:49:44 +02:00
|
|
|
|
namespace Umbraco.Core
|
2017-07-20 11:21:28 +02:00
|
|
|
|
{
|
2019-11-05 13:45:42 +01:00
|
|
|
|
public static partial class Constants
|
2017-05-12 14:49:44 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Contains the valid selector values.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static class DeploySelector
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string This = "this";
|
|
|
|
|
|
public const string ThisAndChildren = "this-and-children";
|
|
|
|
|
|
public const string ThisAndDescendants = "this-and-descendants";
|
|
|
|
|
|
public const string ChildrenOfThis = "children";
|
|
|
|
|
|
public const string DescendantsOfThis = "descendants";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|