PostSharp LocationInterceptionAspect未应用于继承属性

本文关键字:继承 属性 应用于 LocationInterceptionAspect PostSharp | 更新日期: 2023-09-27 18:16:41

我已经创建了一个继承LocationInterceptionAspect的属性。为了便于演示,代码如下:

[Serializable]
public class RepeaterAttribute : LocationInterceptionAspect
{
    public override bool CompileTimeValidate(PostSharp.Reflection.LocationInfo locationInfo)
    {
        var propertyInfo = locationInfo.PropertyInfo;
        if (propertyInfo == null) return false;
        if (propertyInfo.PropertyType != typeof(String))
            return false;
        return base.CompileTimeValidate(locationInfo);
    }
    public override void OnSetValue(LocationInterceptionArgs args)
    {
        args.Value = ((String)args.Value) + ((String)args.Value);
        args.ProceedSetValue();
    }
}

我有一个名为External的库,其中有一个名为Parent的类。

namespace External
{
    public class Parent
    {
        public String ParentProperty { get; set; }
    }
}

在控制台应用程序中,我有一个继承自Parent的名为Child的类。控制台应用程序引用外部库。

public class Child : External.Parent
{
    public String ChildProperty { get; set; }
}

在我的控制台应用程序中,我的代码是。

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            var child = new Child();
            child.ParentProperty = "A";
            Console.WriteLine("This should be 'AA' : '{0}'", child.ParentProperty);
            child.ChildProperty = "B";
            Console.WriteLine("This should be 'BB' : '{0}'", child.ChildProperty);
            Console.ReadKey();
        }
    }
}

,在控制台应用程序的AssemblyInfo.cs中,我有:

[assembly: ConsoleApplication.Repeater(AttributeTargetTypes = "ConsoleApplication.Child")]

但是当我运行Repeater属性不被应用到继承的"ParentProperty"从父类

PostSharp LocationInterceptionAspect未应用于继承属性

PostSharp不能在它正在转换的程序集中更改不同的类。基属性在另一个程序集中声明。这是LocationInterceptionAspect的一个限制。

你可以使用methodintercepeption,它支持在不同的程序集中拦截方法:

[Serializable]
public class SetterRepeaterAttribute : MethodInterceptionAspect
{
    public override void OnInvoke( MethodInterceptionArgs args )
    {
        args.Arguments[0] = ((String)args.Arguments[0]) + ((String)args.Arguments[0]);
        args.Proceed();
    }
}

并在程序集级别将其多播到基类的setter:

[assembly: ConsoleApplication2.SetterRepeater(
    AttributeTargetMembers = "set_ParentProperty", 
    AttributeTargetTypes = "External.Parent", 
    AttributeTargetAssemblies = "regex:.*")]

注意,在这种情况下,拦截是在调用站点级别完成的,ParentProperty setter本身不会更改。来自原始程序集的调用不会被拦截。