2 writes to ViewEnginePath
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\PageActionDescriptorProvider.cs (1)
107ViewEnginePath = model.ViewEnginePath,
PageActionDescriptor.cs (1)
31ViewEnginePath = other.ViewEnginePath;
8 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}";