1

我正在使用Ninject.Extensions.Interception(更具体地说,InterceptAttribute)和Ninject.Extensions.Interception.Linfu代理在我的 C# 应用程序中实现日志记录机制,但是当代理类实现多个接口时,我遇到了一些问题。

我有一个实现接口并从抽象类继承的类。

public class MyClass : AbstractClass, IMyClass {
  public string SomeProperty { get; set; }
}


public class LoggableAttribute : InterceptAttribute { ... }

public interface IMyClass {
  public string SomeProperty { get; set; }
}

public abstract class AbstractClass {

  [Loggable]
  public virtual void SomeMethod(){ ... }
}    

当我尝试从 ServiceLocator 获取 MyClass 的实例时,Loggable属性会导致它返回一个代理。

var proxy = _serviceLocator.GetInstance<IMyClass>();

问题是返回的代理只识别AbstractClass接口,暴露SomeMethod()ArgumentException因此,当我尝试访问不存在的SomeProperty时,我会收到一个。

//ArgumentException
proxy.SomeProperty = "Hi";

在这种情况下,有没有办法使用 mixin 或其他一些技术来创建一个暴露多个接口的代理?

谢谢

保罗

4

1 回答 1

0

我遇到了类似的问题,但没有找到仅使用 ninject 方法的优雅解决方案。所以我用 OOP 中的一个更基本的模式解决了这个问题:组合。

适用于您的问题是我的建议:

public interface IInterceptedMethods
{
    void MethodA();
}

public interface IMyClass
{
    void MethodA();
    void MethodB();
}

public class MyInterceptedMethods : IInterceptedMethods
{
    [Loggable]
    public virtual void MethodA()
    {
        //Do stuff
    }
}

public class MyClass : IMyClass
{
    private IInterceptedMethods _IInterceptedMethods;
    public MyClass(IInterceptedMethods InterceptedMethods)
    {
        this._IInterceptedMethods = InterceptedMethods;
    }
    public MethodA()
    {
        this._IInterceptedMethods.MethodA();
    }
    public Method()
    {
        //Do stuff, but don't get intercepted
    }
}
于 2013-01-10T00:02:16.423 回答