从配置文件中读取属性参数值

时间:2012-04-17 06:57:58

标签: c# custom-attributes

是否可以从配置文件加载属性值?例如,我的属性下面有缓存属性返回值。该属性在应用程序中使用了10次以上,我想从配置文件中加载第二个属性参数(1800秒)。

[Cache(CacheType.Absolute, 1800, CacheLocation.Memory)]

1 个答案:

答案 0 :(得分:-1)

我认为你可以通过这样写Attributes来做到这一点:

How to create Custom Data Annotation Validators