标签: c# custom-attributes
是否可以从配置文件加载属性值?例如,我的属性下面有缓存属性返回值。该属性在应用程序中使用了10次以上,我想从配置文件中加载第二个属性参数(1800秒)。
[Cache(CacheType.Absolute, 1800, CacheLocation.Memory)]
答案 0 :(得分:-1)
我认为你可以通过这样写Attributes来做到这一点:
Attributes
How to create Custom Data Annotation Validators