2 implementations of PathBase
Microsoft.AspNetCore.Http (1)
Features\HttpRequestFeature.cs (1)
37public string PathBase { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
52string IHttpRequestFeature.PathBase
1 write to PathBase
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
70set { HttpRequestFeature.PathBase = value.Value ?? string.Empty; }
3 references to PathBase
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
69get { return new PathString(HttpRequestFeature.PathBase); }
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionDispatcher.cs (1)
727PathBase = existingRequestFeature.PathBase,
Microsoft.AspNetCore.Http.Features (1)
IHttpRequestFeature.cs (1)
43/// The value may be <see cref="string.Empty"/> if <see cref="PathBase"/> contains the full path,