12 references to Empty
Microsoft.AspNetCore.Http.Abstractions (4)
HttpRequest.cs (1)
57/// The value may be <see cref="PathString.Empty"/> if <see cref="PathBase"/> contains the full path,
PathString.cs (3)
294remaining = Empty; 345remaining = Empty; 346matched = Empty;
Microsoft.AspNetCore.Rewrite (2)
IISUrlRewrite\IISUrlRewriteRule.cs (1)
44if (path == PathString.Empty)
RewriteRule.cs (1)
31if (path == PathString.Empty)
Microsoft.AspNetCore.Routing (1)
UriBuildingContext.cs (1)
262pathString = PathString.Empty;
Microsoft.AspNetCore.StaticFiles (1)
Infrastructure\SharedOptions.cs (1)
21RequestPath = PathString.Empty;
Microsoft.AspNetCore.TestHost (4)
ClientHandler.cs (1)
181req.PathBase = PathString.Empty;
TestServer.cs (2)
152private PathString PathBase => BaseAddress == null ? PathString.Empty : PathString.FromUriComponent(BaseAddress); 195var pathBase = BaseAddress == null ? PathString.Empty : PathString.FromUriComponent(BaseAddress);
WebSocketClient.cs (1)
72request.PathBase = PathString.Empty;