2013-03-22 13:11:27 +00:00
|
|
|
|
namespace Umbraco.Core
|
|
|
|
|
|
{
|
2016-08-09 15:36:02 +02:00
|
|
|
|
public static partial class Constants
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Defines the identifiers for Umbraco system nodes.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static class System
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The integer identifier for global system root node.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const int Root = -1;
|
2013-03-22 13:11:27 +00:00
|
|
|
|
|
2016-08-09 15:36:02 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The integer identifier for content's recycle bin.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const int RecycleBinContent = -20;
|
2013-03-22 13:11:27 +00:00
|
|
|
|
|
2016-08-09 15:36:02 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The integer identifier for media's recycle bin.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const int RecycleBinMedia = -21;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static class DatabaseProviders
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string SqlCe = "System.Data.SqlServerCe.4.0";
|
|
|
|
|
|
public const string SqlServer = "System.Data.SqlClient";
|
|
|
|
|
|
public const string MySql = "MySql.Data.MySqlClient";
|
2016-11-03 10:31:44 +01:00
|
|
|
|
}
|
2016-05-18 10:55:19 +02:00
|
|
|
|
}
|
2013-03-22 13:11:27 +00:00
|
|
|
|
}
|