5 references to FileNameRouteConstraint
Microsoft.AspNetCore.Routing (5)
Constraints\FileNameRouteConstraint.cs (2)
35/// The <see cref="FileNameRouteConstraint"/> does not attempt to validate that the value contains 39/// The <see cref="FileNameRouteConstraint"/> does not attempt to validate that the value represents
Constraints\NonFileNameRouteConstraint.cs (2)
109return !FileNameRouteConstraint.IsFileName(value); 123return !FileNameRouteConstraint.IsFileName(literal);
RouteOptions.cs (1)
141AddConstraint<FileNameRouteConstraint>(defaults, "file");