2 implementations of Method
Microsoft.AspNetCore.Http (1)
Features\HttpRequestFeature.cs (1)
34public string Method { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
34string IHttpRequestFeature.Method
1 write to Method
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
100set { HttpRequestFeature.Method = value; }
4 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.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;