2 implementations of Path
Microsoft.AspNetCore.Http (1)
Features\HttpRequestFeature.cs (1)
40public string Path { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
58string IHttpRequestFeature.Path
1 write to Path
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
76set { HttpRequestFeature.Path = value.Value ?? string.Empty; }
2 references to Path
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
75get { return new PathString(HttpRequestFeature.Path); }
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionDispatcher.cs (1)
726Path = existingRequestFeature.Path,