3 references to RequestPath
Microsoft.AspNetCore.Owin (3)
OwinEnvironment.cs (1)
56{ OwinConstants.RequestPath, new FeatureMap<IHttpRequestFeature>(feature => feature.Path, () => string.Empty, (feature, value) => feature.Path = Convert.ToString(value, CultureInfo.InvariantCulture)) },
OwinFeatureCollection.cs (2)
101get { return Prop<string>(OwinConstants.RequestPath); } 102set { Prop(OwinConstants.RequestPath, value); }