2 writes to RelativePath
Microsoft.AspNetCore.Mvc.RazorPages (2)
ApplicationModels\PageRouteModel.cs (2)
33RelativePath = relativePath ?? throw new ArgumentNullException(nameof(relativePath)); 50RelativePath = other.RelativePath;
6 references to RelativePath
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (3)
RazorProjectPageRouteModelProvider.cs (2)
56if (context.RouteModels.Any(m => string.Equals(relativePath, m.RelativePath, StringComparison.OrdinalIgnoreCase))) 85if (context.RouteModels.Any(m => string.Equals(relativePath, m.RelativePath, StringComparison.OrdinalIgnoreCase)))
src\aspnetcore\src\Mvc\Mvc.RazorPages\src\ApplicationModels\PageRouteModelFactory.cs (1)
63var fileName = Path.GetFileName(model.RelativePath);
Microsoft.AspNetCore.Mvc.RazorPages (3)
ApplicationModels\PageRouteModel.cs (1)
50RelativePath = other.RelativePath;
ApplicationModels\PageRouteModelFactory.cs (1)
63var fileName = Path.GetFileName(model.RelativePath);
Infrastructure\PageActionDescriptorProvider.cs (1)
106RelativePath = model.RelativePath,