28 references to PagesSection
System.Web (28)
Compilation\AssemblyBuilder.cs (1)
732PagesSection pagesConfig = MTConfigUtil.GetPagesAppConfig();
Compilation\BuildResult.cs (2)
946PagesSection pagesConfig = MTConfigUtil.GetPagesConfig(VirtualPath); 1250PagesSection pagesConfig = MTConfigUtil.GetPagesConfig(VirtualPath);
Configuration\MTConfigUtil.cs (11)
46static internal PagesSection GetPagesAppConfig() { 50return GetAppConfig<PagesSection>(); 54static internal PagesSection GetPagesConfig() { 58return GetConfig<PagesSection>(); 62static internal PagesSection GetPagesConfig(string vpath) { 66return GetConfig<PagesSection>(vpath); 70static internal PagesSection GetPagesConfig(VirtualPath vpath) { 74return GetConfig<PagesSection>(vpath); 78static internal PagesSection GetPagesConfig(HttpContext context) { 82return GetConfig<PagesSection>(context); 184else if (typeof(S) == typeof(PagesSection)) {
Configuration\RuntimeConfig.cs (3)
360internal PagesSection Pages { 362return (PagesSection) GetSection("system.web/pages", typeof(PagesSection), ResultsIndex.Pages);
Configuration\SystemWebSectionGroup.cs (2)
169public PagesSection Pages { 171return (PagesSection) Sections["pages"];
UI\BatchParser.cs (2)
33private PagesSection _pagesConfig; 34protected PagesSection PagesConfig {
UI\Page.cs (1)
3970PagesSection pagesSection = RuntimeConfig.GetConfig(Context).Pages;
UI\PageParserFilter.cs (1)
45internal static PageParserFilter Create(PagesSection pagesConfig, VirtualPath virtualPath, TemplateParser parser) {
UI\TagNameToTypeMapper.cs (2)
246PagesSection pagesConfig = parser.PagesConfig; 267foreach (TagNamespaceRegisterEntry entry in PagesSection.DefaultTagNamespaceRegisterEntries) {
UI\TemplateParser.cs (2)
58private PagesSection _pagesConfig; 59internal PagesSection PagesConfig {
UI\Util.cs (1)
80internal static long GetRecompilationHash(PagesSection ps)