3 references to RequestScheme
Microsoft.AspNetCore.Owin (3)
OwinEnvironment.cs (1)
53{ OwinConstants.RequestScheme, new FeatureMap<IHttpRequestFeature>(feature => feature.Scheme, () => string.Empty, (feature, value) => feature.Scheme = Convert.ToString(value, CultureInfo.InvariantCulture)) },
OwinFeatureCollection.cs (2)
83get { return Prop<string>(OwinConstants.RequestScheme); } 84set { Prop(OwinConstants.RequestScheme, value); }