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