5 implementations of Method
Microsoft.AspNetCore.Http (1)
Features\HttpRequestFeature.cs (1)
34public string Method { get; set; }
Microsoft.AspNetCore.Owin (1)
OwinFeatureCollection.cs (1)
87string IHttpRequestFeature.Method
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
184string IHttpRequestFeature.Method
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
122string IHttpRequestFeature.Method
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
34string IHttpRequestFeature.Method
2 writes to Method
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
100set { HttpRequestFeature.Method = value; }
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
411{ OwinConstants.RequestMethod, new FeatureMap<IHttpRequestFeature>(feature => feature.Method, () => string.Empty, (feature, value) => feature.Method = Convert.ToString(value, CultureInfo.InvariantCulture)) },
5 references to Method
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
99get { return HttpRequestFeature.Method; }
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionDispatcher.cs (1)
724Method = existingRequestFeature.Method,
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
411{ OwinConstants.RequestMethod, new FeatureMap<IHttpRequestFeature>(feature => feature.Method, () => string.Empty, (feature, value) => feature.Method = Convert.ToString(value, CultureInfo.InvariantCulture)) },
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\Http1Connection.cs (1)
436Debug.Assert(((IHttpRequestFeature)this).Method != null, "Method was not set");
Internal\Http\HttpProtocol.cs (1)
149public string MethodText => ((IHttpRequestFeature)this).Method;