使用自定义属性的 .NET Unity 拦截

.NET Unity Interception using Custom Attributes

我想获得答案 here 中描述的行为,但使用代码配置。代码示例显示了在没有任何统一相关的情况下创建自定义属性并通过配置添加行为。

自定义属性位于同一解决方案中引用的单独程序集中。

问题是它在配置期间抛出异常:

InvalidOperationException: The type Microsoft.Practices.Unity.InterceptionExtension.CustomAttributeMatchingRule does not have a constructor that takes the parameters (LogAttribute, Boolean).

container
    .AddNewExtension<Interception>()
    .Configure<Interception>()
        .AddPolicy("MyLoggingPolicy")
        .AddMatchingRule<CustomAttributeMatchingRule>(
        new InjectionConstructor(typeof(Abstractions.Attributes.LogAttribute), true))
        .AddCallHandler<LoggingHandler>(new ContainerControlledLifetimeManager())
            .Interception
            .Container
        .RegisterType<IFirstInterface>(new InjectionFactory((context) => FirstClassFactoryMethod()))
        .RegisterType<ISecondInterface>(new InjectionFactory((context) => SecondClassFactoryMethod()));

[AttributeUsage(AttributeTargets.Method)]
public class LogAttribute : Attribute { }

public class LoggingHandler : ICallHandler
{
    public int Order { get; set; }

    public IMethodReturn Invoke(IMethodInvocation input, GetNextHandlerDelegate getNext)
    {
        Console.WriteLine($"{DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss")} Started: {input.MethodBase.Name}");
        var result = getNext()(input, getNext);
        Console.WriteLine($"{DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss")} Completed: {input.MethodBase.Name}");
        return result;
    }
}

更新抛出的行:

.AddMatchingRule(
    new CustomAttributeMatchingRule(typeof(Abstractions.Attributes.LogAttribute), true))

防止抛出异常,但 LoggingHandler 不会收到来自具有 [Log] 属性的方法的任何调用。

注意:标有 [Log] 的方法是 public 方法,在不同的程序集中,在 类 中使用 .Resolve() 实例化。

对于遇到相同问题的任何人 - 我必须在注册类型上定义拦截行为:

.RegisterType<IFirstInterface>(
    new InjectionFactory((context) => FirstClassFactoryMethod())
    new Interceptor<TransparentProxyInterceptor>()
    new InterceptionBehavior<PolicyInjectionBehavior>())
.RegisterType<ISecondInterface>(
    new InjectionFactory((context) => SecondClassFactoryMethod())
    new Interceptor<TransparentProxyInterceptor>()
    new InterceptionBehavior<PolicyInjectionBehavior>()));

我遇到了同样的错误并尝试了 Filip 解决方案但没有奏效。对我来说,为 InjectionFactory (Unity 4.0.1) 更改 InjectionConstructor:

container
.AddNewExtension<Interception>()
.Configure<Interception>()
    .AddPolicy("MyLoggingPolicy")
    .AddMatchingRule<CustomAttributeMatchingRule>(
    new InjectionFactory((context) => new CustomAttributeMatchingRule(typeof(Abstractions.Attributes.LogAttribute), true))
    .AddCallHandler<LoggingHandler>(new ContainerControlledLifetimeManager());

希望这对某人有所帮助。