2

我想在动态代理拦截器方法中找到控制器和操作名称我检查堆栈跟踪方法不是好方法,因为它不会在堆栈中最后出现这是我的代码

全球阿萨克斯城堡配置

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 中获取类名和方法名

使用调用.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 回答