3 references to RequestMethod
Microsoft.AspNetCore.Owin (3)
OwinEnvironment.cs (1)
54{ OwinConstants.RequestMethod, new FeatureMap<IHttpRequestFeature>(feature => feature.Method, () => string.Empty, (feature, value) => feature.Method = Convert.ToString(value, CultureInfo.InvariantCulture)) },
OwinFeatureCollection.cs (2)
89get { return Prop<string>(OwinConstants.RequestMethod); } 90set { Prop(OwinConstants.RequestMethod, value); }