Using HttpContext.Current as before in. NET Core

Source: Internet
Author: User
Tags httpcontext

Tonight in the study of the use of the. NET Core The simplest question is how to make the HttpContext and the previous compatibility, toss a long time finally fix, record

. NET core uses the ubiquitous injection, see the webmaster adults about the injection of the article dawned. Here's how to fix it:

1: First we create a static class Myhttpcontext

  public static class Myhttpcontext    {public        static IServiceProvider serviceprovider;        Static Myhttpcontext ()        {} public        static HttpContext current        {            get            {                Object factory = Serviceprovider.getservice (typeof (Microsoft.AspNetCore.Http.IHttpContextAccessor));                HttpContext context = ((Httpcontextaccessor) factory). HttpContext;                return context;            }        }

2: Then in the Startup.cs file

In the Configure method, add

Services. Tryaddsingleton<ihttpcontextaccessor, httpcontextaccessor> ();

  

Rewriting the Configureservices method

  

  public void Configure (Iapplicationbuilder app, Ihostingenvironment env, Iloggerfactory loggerfactory, IServiceProvider SVP) {///        Province n multiple code            System.Web.NewHttpContext.ServiceProvider = SVP;    }        

  

OK finally can be used as before directly in the project to use Htppcontext ...

Using HttpContext.Current as before in. NET Core

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.