2010-06-23 66 views

回答

0

您可以創建一個ICallHandler(或在Unity 2.0非常相似IInterceptionBehavior)實施類似下面,並把它添加到你的目標的執行時間表

public class MeasurementHandler : ICallHandler 
{ 
    public IMethodReturn Invoke(IMethodInvocation input, 
           GetNextHandlerDelegate getNext) 
    { 
    StartTimer(); // implement it :) 
    IMethodReturn msg = getNext()(input, getNext); 
    StopTimer(); // implement it :) 
    return msg; 
    } 
}