• Carrying per-request context using the HttpRequestMessage.Properties


    In a Web API application, I use Castle Windsor to supply services configured with PerWebRequest lifetime and everything works fine on IIS.

    However, when I use the ASP.NET Web API Self Host (Beta) package I need to create a custom lifetime in order to scope those services per HTTP request.

    I'd suggest you using a message handler to set some your object into HttpRequestMessage.Property:

    public class MyApplication : HttpApplication
    {
        protected void Application_Start()
        {
            RegisterHttpMessageHandlers(GlobalConfiguration.Configuration);
        }
        public void RegisterHttpMessageHandlers(HttpConfiguration config)
        {
            config.MessageHandlers.Add(new MyMessageHandler());
        }
    }
    
    public static class MyHttpMessageHandlerExtensions
    {
        public static class HttpPropertyKey
        {
            public static readonly string MyProperty = "MyCompany_MyProperty";
        }
    
        public static MyContext GetContext(this HttpRequestMessage request)
        {
            return (MyContext)request.Properties[HttpPropertyKey.MyProperty ];
        }
    
        public static void SetContext(this HttpRequestMessage request, MyContext ctx)
        {
            request.Properties[HttpPropertyKey.MyProperty] = ctx;
        }
    }
    public class MyMessageHandler : DelegatingHandler
    {
        protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
        {
            request.SetContext(new MyContext(){/*some your data*/});
            return base.SendAsync(request, cancellationToken);
        }
    }
    
    public class MyController: ApiController
    {
        public object GetData()
        {
            MyContext ctx = this.Request.GetContext(); // the extenstion method is used
        }
    }
  • 相关阅读:
    基于vue的购物车清单
    圣杯布局和双飞翼布局
    正则限制input负数输入
    vue.js devtools图标不亮
    将二维数组转换成一维数组(基于reduce)
    基于PROMISE解决回调地狱问题
    封装AJAX库(参考JQ)
    for in和for of的区别
    抢购倒计时的实现
    git clone --depth=1 后获取其他分支
  • 原文地址:https://www.cnblogs.com/lenmom/p/8797653.html
Copyright © 2020-2023  润新知