AOP / PostSharp和脏检查 - 获取属性名称更好的方法?

时间:2009-12-17 11:48:33

标签: postsharp

我的方面:

  [Serializable]
        [MulticastAttributeUsage(MulticastTargets.Class, Inheritance = MulticastInheritance.Strict)]
        public sealed class NotifyPropertyChangedAttribute : InstanceLevelAspect
        {
             [OnLocationSetValueAdvice, MulticastPointcut(Targets = MulticastTargets.Property)]
            public void OnPropertySet(LocationInterceptionArgs args)
            {
                if (args.Value == args.GetCurrentValue()) return;
                args.ProceedSetValue();

                IPersistent iENtity = this.Instance as IPersistent;
                if (iENtity != null)
                {
                    // do something with iENtity
                    // need to identify property name without using reflection
                }
           }
        }

我已将NotifyPropertyChangedAttribute应用于整个类,因此我可以处理属性更改,一切都按预期工作。

但我想知道已更改的属性的名称(因此我可以在某些集合中存储脏属性的名称)。我想使用LocationInterceptionArgs :: Location但我读到了这个:

"Using this property causes the aspect weaver to generate code that has non-trivial runtime overhead."

有没有其他方法可以在我的方面获得受影响的属性的名称,但不使用反射或其他具有大运行时开销的代码?

任何想法(或更好 - 例子)?也许我可以通过其他方式实现它?我只是需要一些方法来在运行时识别属性,即使没有名称 - 只是一些值,我可以用来在一些字典中找到属性<>后来...

感谢。

0 个答案:

没有答案