摘要: 1.抽象属性基类 1 [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] 2 public abstract class AspectAttribute : Attribute 3 { 4 public Type CallHandlerType { get; protected set; } 5 6 protected abstract PropertyInfo[] PropertiesInfo { get; } 7 8 public NameValueCollection GetAttrs... 阅读全文
posted @ 2012-06-25 10:34 ahui 阅读(6431) 评论(4) 推荐(6) 编辑