13 writes to ViewEnginePath
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\PageActionDescriptorProvider.cs (1)
107ViewEnginePath = model.ViewEnginePath,
PageActionDescriptor.cs (1)
31ViewEnginePath = other.ViewEnginePath;
Microsoft.AspNetCore.Mvc.RazorPages.Test (11)
ApplicationModels\CompiledPageActionDescriptorBuilderTest.cs (5)
28ViewEnginePath = "/Pages/Foo", 56ViewEnginePath = "/Pages/Foo", 107ViewEnginePath = "/Pages/Foo", 149ViewEnginePath = "/Pages/Foo", 411ViewEnginePath = "/Pages/Foo",
DependencyInjection\PageConventionCollectionExtensionsTest.cs (1)
1022ViewEnginePath = viewEnginePath,
Infrastructure\PageActionInvokerProviderTest.cs (3)
156ViewEnginePath = "/Home/Path1/File.cshtml", 372ViewEnginePath = "/Pages/Level1/Level2/Index.cshtml" 426ViewEnginePath = "/Views/Deeper/Index.cshtml"
Infrastructure\PageActionInvokerTest.cs (2)
1400actionDescriptor.ViewEnginePath = "/Pages/Foo"; 1445ViewEnginePath = "/Index.cshtml",
11 references to ViewEnginePath
Microsoft.AspNetCore.Mvc.RazorPages (8)
ApplicationModels\PageApplicationModel.cs (1)
94public string ViewEnginePath => ActionDescriptor.ViewEnginePath;
PageActionDescriptor.cs (7)
31ViewEnginePath = other.ViewEnginePath; 44/// e.g. the <see cref="ViewEnginePath"/> for the file /Pages/Catalog/Antiques.cshtml is <c>/Catalog/Antiques</c> 48/// e.g. the <see cref="ViewEnginePath"/> for the file Areas/Identity/Pages/Manage/Accounts.cshtml, is <c>/Manage/Accounts</c>. 69if (base.DisplayName == null && ViewEnginePath != null) 71base.DisplayName = ViewEnginePath; 85private string DebuggerDisplayString => $"{nameof(ViewEnginePath)} = {ViewEnginePath}, {nameof(RelativePath)} = {RelativePath}";
Microsoft.AspNetCore.Mvc.RazorPages.Test (3)
ApplicationModels\CompiledPageActionDescriptorBuilderTest.cs (2)
42Assert.Same(actionDescriptor.ViewEnginePath, actual.ViewEnginePath);
Infrastructure\PageActionInvokerTest.cs (1)
1410var pagePath = actionDescriptor.ViewEnginePath;