ApplicationFileParser.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / ApplicationFileParser.cs / 1 / ApplicationFileParser.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 * Implements the ASP.NET template parser 
 *
 * Copyright (c) 1998 Microsoft Corporation 
 */

namespace System.Web.UI {
 
using System;
using System.Collections; 
using System.IO; 
using System.Web.Util;
using System.Web.Compilation; 
using Debug=System.Web.Util.Debug;


/* 
 * Parser for global.asax files
 */ 
internal sealed class ApplicationFileParser : TemplateParser { 

    internal ApplicationFileParser() {} 

    internal override Type DefaultBaseType { get { return typeof(System.Web.HttpApplication); } }

    internal override bool FApplicationFile { get { return true; } } 

    internal const string defaultDirectiveName = "application"; 
    internal override string DefaultDirectiveName { 
        get { return defaultDirectiveName; }
    } 

    internal override void CheckObjectTagScope(ref ObjectTagScope scope) {

        // Map the default scope to AppInstance 
        if (scope == ObjectTagScope.Default)
            scope = ObjectTagScope.AppInstance; 
 
        // Check for invalid scopes
        if (scope == ObjectTagScope.Page) { 
            throw new HttpException(
                SR.GetString(SR.Page_scope_in_global_asax));
        }
    } 
}
 
} 


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK