2 writes to RelativePath
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\PageActionDescriptorProvider.cs (1)
106RelativePath = model.RelativePath,
PageActionDescriptor.cs (1)
30RelativePath = other.RelativePath;
11 references to RelativePath
Microsoft.AspNetCore.Mvc.RazorPages (11)
ApplicationModels\PageApplicationModel.cs (1)
81public string RelativePath => ActionDescriptor.RelativePath;
Infrastructure\CompiledPageActionDescriptorProvider.cs (2)
69if (!lookup.TryGetValue(pageActionDescriptor.RelativePath, out var compiledViewDescriptor)) 71throw new InvalidOperationException($"A descriptor for '{pageActionDescriptor.RelativePath}' was not found.");
Infrastructure\DefaultPageFactoryProvider.cs (1)
63page.Path = pageContext.ActionDescriptor.RelativePath;
Infrastructure\DefaultPageLoader.cs (1)
62var viewDescriptor = await Compiler.CompileAsync(actionDescriptor.RelativePath);
Infrastructure\PageActionInvoker.cs (2)
119_viewContext.ExecutingFilePath = _pageContext.ActionDescriptor.RelativePath; 158_viewContext.ExecutingFilePath = _pageContext.ActionDescriptor.RelativePath;
Infrastructure\PageActionInvokerCache.cs (1)
117foreach (var filePath in RazorFileHierarchy.GetViewStartPaths(descriptor.RelativePath))
PageActionDescriptor.cs (3)
30RelativePath = other.RelativePath; 85private string DebuggerDisplayString => $"{nameof(ViewEnginePath)} = {ViewEnginePath}, {nameof(RelativePath)} = {RelativePath}";