Mercurial > pub > bltoolkit
comparison Source/TypeBuilder/Builders/TypeBuilderConsts.cs @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f990fcb411a9 |
---|---|
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 } |