如何在C#中拦截静态方法调用

时间:2010-02-10 16:57:49

标签: c# scope aop intercept

我正在尝试在C#中实现某种面向​​方面编程,在那里我取得了一些小的成功,但发现了一些重要的限制。

其中一个限制是拦截对静态方法的调用的能力。例如,假设我们有下一个对象:

public class SampleObject  
{
    public SampleObjectProperty { get; set; }  

    public SampleObject(int anInteger) { this.SampleObjectProperty = anInteger; }

    public int SampleObjectMethod(int aValue) 
    { 
        return aValue + this.SampleObjectProperty; 
    }

    public static string GetPI() { return Math.PI.ToString(); }
}

来电者看起来像:

[Intercept]
public class Caller : ContextBoundObject
{
    static void Main(string[] args)
    {
        SampleObject so = new SampleObject(1); // Intercepted successfully.
        so.SampleObjectProperty;               // Idem.
        so.SampleObjectProperty = 2;           // Idem.
        so.SampleObjectMethod(2);              // Idem.

        // The next call (invocation) executes perfectly, but is not intercepted.
        SampleObject.GetPI(); // NOT INTERCEPTED :(        
    }
}

使用我的代码,我能够拦截构造函数,实例方法和属性(get和set),但没有静态方法。

关于如何捕获静态方法调用的任何建议或想法?

1 个答案:

答案 0 :(得分:4)

我见过的AOP工具使用其他技术来拦截静态方法。 特别是,我正在考虑PostSharp,它改变你的代码编译后插入所需的拦截指令。

有关详细信息,请参阅http://www.postsharp.org/

使用ContextBoundObject技术的拦截仅限于实例方法。