摘要:
1、IActionFilter(Action拦截器接口) Action拦截器分别在“执行Action之前”拦截和“执行Action之后”拦截,2个方法如下: // 摘要: // Called after the action method executes. // // 参数: // filterContext: // The filter context. void OnActionExecuted(ActionExecutedContext filterContext); // // 摘要: // Called before an action method execut... 阅读全文
摘要:
最近写了一段自定义的ConfigurationSection继承类,通过该class可以轻松得定义和读取配置文件信息, 注意这里使用的是c# 2.0来实现的,相比1.1必须通过实现IConfigurationSectionHandler接口来自定义配置节点类方便多了 不论是web.config还是app.config,都可以使用ConfigurationManager类加载配置文件中自定义的节点内容。 以下是配置文件的层次结构: 1<?xmlversion="1.0"encoding="utf-8"?> 2<configuration& 阅读全文