2017-01-24 11:11:50 +01:00
|
|
|
|
namespace Umbraco.Core
|
2017-01-16 20:45:08 +11:00
|
|
|
|
{
|
|
|
|
|
|
public static partial class Constants
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Contains the valid selector values.
|
|
|
|
|
|
/// </summary>
|
2017-01-17 14:42:30 +11:00
|
|
|
|
public static class DeploySelector
|
2017-01-16 20:45:08 +11:00
|
|
|
|
{
|
|
|
|
|
|
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";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|