0
|
1 namespace BLToolkit.TypeBuilder.Builders
|
|
2 {
|
|
3 public static class TypeBuilderConsts
|
|
4 {
|
|
5 public static class Priority
|
|
6 {
|
|
7 public const int Low = int.MinValue / 2;
|
|
8 public const int Normal = 0;
|
|
9 public const int High = int.MaxValue / 2;
|
|
10
|
|
11 public const int NotNullAspect = High;
|
|
12 public const int OverloadAspect = High;
|
|
13 public const int AsyncAspect = Normal;
|
|
14 public const int ClearCacheAspect = Normal;
|
|
15 public const int LoggingAspect = Normal;
|
|
16 public const int CacheAspect = Low;
|
|
17 public const int DataAccessor = Low;
|
|
18 public const int PropChange = int.MinValue + 1000000;
|
|
19 }
|
|
20
|
|
21 public const string AssemblyNameSuffix = "TypeBuilder";
|
|
22 }
|
|
23 }
|