2 implementations of Environment
Microsoft.AspNetCore.Owin (2)
OwinEnvironmentFeature.cs (1)
12
public IDictionary<string, object>
Environment
{ get; set; }
OwinFeatureCollection.cs (1)
39
public IDictionary<string, object>
Environment
{ get; set; }
2 references to Environment
Microsoft.AspNetCore.Owin (2)
OwinExtensions.cs (2)
50
env = owinEnvFeature.
Environment
;
129
return next(httpContext.Features.Get<IOwinEnvironmentFeature>().
Environment
);