2015-12-26 22:44:43 +00:00
|
|
|
|
|
|
|
|
|
namespace DSInternals.DataStore
|
|
|
|
|
{
|
|
|
|
|
internal static class ADConstants
|
|
|
|
|
{
|
|
|
|
|
public const string DataTableName = "datatable";
|
|
|
|
|
public const string SystemTableName = "hiddentable";
|
|
|
|
|
public const string LinkTableName = "link_table";
|
|
|
|
|
public const string SecurityDescriptorTableName = "sd_table";
|
|
|
|
|
public const int GeneralizedTimeCoefficient = 10000000;
|
|
|
|
|
public const string EseBaseName = "edb";
|
2016-02-21 08:16:56 +00:00
|
|
|
|
public const int PageSize = 8192; // 8k
|
|
|
|
|
public const int EseLogFileSize = 10240; // 10M
|
2016-01-14 11:06:11 +00:00
|
|
|
|
public const int NotAnObjectDNTag = 1;
|
2015-12-26 22:44:43 +00:00
|
|
|
|
public const int RootDNTag = 2;
|
2016-02-28 14:21:22 +00:00
|
|
|
|
public const int RootSecurityDescriptorId = 1;
|
2015-12-26 22:44:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|