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