2 implementations of IOwinEnvironmentFeature
Microsoft.AspNetCore.Owin (2)
OwinEnvironmentFeature.cs (1)
9
public class OwinEnvironmentFeature :
IOwinEnvironmentFeature
OwinFeatureCollection.cs (1)
34
IOwinEnvironmentFeature
6 references to IOwinEnvironmentFeature
Microsoft.AspNetCore.Owin (6)
OwinEnvironmentFeature.cs (1)
7
/// Default implementation of <see cref="
IOwinEnvironmentFeature
"/>.
OwinExtensions.cs (4)
47
var
owinEnvFeature = httpContext.Features.Get<
IOwinEnvironmentFeature
>();
129
return next(httpContext.Features.Get<
IOwinEnvironmentFeature
>().Environment);
140
context.Features.Set<
IOwinEnvironmentFeature
>(new OwinEnvironmentFeature() { Environment = env });
OwinFeatureCollection.cs (1)
407
yield return new KeyValuePair<Type, object>(typeof(
IOwinEnvironmentFeature
), this);