zoukankan      html  css  js  c++  java
  • 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
        }
    }
  • 相关阅读:
    XMLhttp.status返回值及xmlhttp.readState值
    移动端meta设置
    css自定义checkbox样式
    base.css(css基础样式)
    css文本块中首行文本的缩进,字间距
    jq里的 ajax( ) 方法
    小程序 背景图在开发工具上显示,但是在真机调试时无效
    小程序登陆锁-登录逻辑
    背景图尺寸(background-size)
    动态渲染style 背景图片
  • 原文地址:https://www.cnblogs.com/lenmom/p/8797653.html
Copyright © 2011-2022 走看看