mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00
Update HttpContextAccessor.cs
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using System.Runtime.Remoting;
|
||||
using System.Runtime.Remoting.Messaging;
|
||||
using System.Web;
|
||||
|
||||
@@ -9,8 +10,15 @@ namespace Orchard.Mvc {
|
||||
|
||||
public HttpContextBase Current() {
|
||||
var httpContext = GetStaticProperty();
|
||||
return !IsBackgroundHttpContext(httpContext) ? new HttpContextWrapper(httpContext) :
|
||||
_httpContext ?? CallContext.LogicalGetData("HttpContext") as HttpContextBase;
|
||||
|
||||
if (!IsBackgroundHttpContext(httpContext))
|
||||
return new HttpContextWrapper(httpContext);
|
||||
|
||||
if (_httpContext != null)
|
||||
return _httpContext;
|
||||
|
||||
var context = CallContext.LogicalGetData("HttpContext") as ObjectHandle;
|
||||
return context != null ? context.Unwrap() as HttpContextBase : null;
|
||||
}
|
||||
|
||||
public void Set(HttpContextBase httpContext) {
|
||||
|
Reference in New Issue
Block a user