2

動的プロキシインターセプターメソッドでコントローラーとアクションの名前を見つけたいのですが、スタックトレースのアプローチが適切ではないことを確認します。これは、このコードのスタックで最後ではないためです。

グローバルasax城の構成

IWindsorContainer ioc = new WindsorContainer();
ioc.Register(
Component.For<IMyService>().DependsOn()
.ImplementedBy<MyService>()
.Interceptors<MyInterceptor>()
.LifeStyle.PerWebRequest);

ControllerBuilder.Current.SetControllerFactory(new WindsorControllerFactory(ioc));
ioc.Register(
Component.For<IInterceptor>()
.ImplementedBy<MyInterceptor>());

コントローラクラス

private IMyService _service;
public HomeController(IMyService service)
{
    _service = service;
}
public ActionResult Index()
{
    _service.HelloWorld();

    return View();
}

サービスクラス

public class MyService : IMyService
{
    public void HelloWorld()
    {
        throw new Exception("error");
    }
}
public interface IMyService
{
    void HelloWorld();
}

インターセプタークラス

//i want to find Controller name  

public class MyInterceptor : IInterceptor
{
    public void Intercept(IInvocation invocation)
    {
        //?? controller name ?? method Name  
        invocation.Proceed();
    }
}
4

2 に答える 2

1

DynamicProxyは発信者情報を公開しません。

于 2013-03-07T23:46:47.043 に答える
-1

loggingInterceptorでクラス名とメソッド名を取得できます

invocation.TargetType.Nameを使用する

public class LoggingInterceptor : IInterceptor
{ 
    ...

    public void Intercept(IInvocation invocation)
    {
        try
        {
            this.Logger.InfoFormat(
                "{0} | Entering method [{1}] with paramters: {2}",
                invocation.TargetType.Name,
                invocation.Method.Name,
                this.GetInvocationDetails(invocation));

            invocation.Proceed();
        }
        catch (Exception e)
        {
            this.Logger.ErrorFormat(
                "{0} | ...Logging an exception has occurred: {1}", invocation.TargetType.Name, e);
            throw;
        }
        finally
        {
            this.Logger.InfoFormat(
                "{0} | Leaving method [{1}] with return value {2}",
                invocation.TargetType.Name,
                invocation.Method.Name,
                invocation.ReturnValue);
        }
    } 

}
于 2013-05-03T19:08:35.687 に答える