2 writes to ViewEnginePath
Microsoft.AspNetCore.Mvc.RazorPages (2)
ApplicationModels\PageRouteModel.cs (2)
34ViewEnginePath = viewEnginePath ?? throw new ArgumentNullException(nameof(viewEnginePath)); 51ViewEnginePath = other.ViewEnginePath;
10 references to ViewEnginePath
Microsoft.AspNetCore.Mvc.RazorPages (10)
ApplicationModels\PageConventionCollection.cs (2)
298string.Equals(model.ViewEnginePath, _path, StringComparison.OrdinalIgnoreCase)) 326PathBelongsToFolder(_folderPath, model.ViewEnginePath))
ApplicationModels\PageRouteModel.cs (4)
51ViewEnginePath = other.ViewEnginePath; 69/// e.g. the <see cref="ViewEnginePath"/> for the file /Pages/Catalog/Antiques.cshtml is <c>/Catalog/Antiques</c> 73/// e.g. the <see cref="ViewEnginePath"/> for the file Areas/Identity/Pages/Manage/Accounts.cshtml, is <c>/Manage/Accounts</c>. 99/// The value of <see cref="ViewEnginePath"/> is considered an implicit route value corresponding
ApplicationModels\PageRouteModelFactory.cs (1)
58model.RouteValues.Add("page", model.ViewEnginePath);
Infrastructure\PageActionDescriptorProvider.cs (3)
102DisplayName = $"Page: {model.ViewEnginePath}", 107ViewEnginePath = model.ViewEnginePath, 120descriptor.RouteValues.Add("page", model.ViewEnginePath);