This topic has not yet been rated - Rate this topic

PageParserFilter Class

Provides an abstract base class for a page parser filter that is used by the ASP.NET parser to determine whether an item is allowed in the page at parse time.

System.Object
  System.Web.UI.PageParserFilter

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)
[AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Medium)]
[AspNetHostingPermissionAttribute(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Medium)]
public abstract class PageParserFilter

The PageParserFilter type exposes the following members.

  Name Description
Protected method PageParserFilter Initializes a new instance of the PageParserFilter class.
Top
  Name Description
Public property AllowCode Gets a value indicating whether an ASP.NET parser filter permits code on the page.
Protected property CalledFromParseControl Gets a value that indicates whether the parser filter was called from the page.
Protected property Line Gets the line number that is currently being parsed in the file.
Public property NumberOfControlsAllowed Gets the maximum number of controls that a parser filter can parse for a single page.
Public property NumberOfDirectDependenciesAllowed Gets the maximum number of direct file dependencies that the page parser permits for a single page.
Public property TotalNumberOfDependenciesAllowed Gets the maximum number of direct and indirect file dependencies that the page parser permits for a single page.
Protected property VirtualPath Gets the virtual path to the page currently being parsed.
Top
  Name Description
Protected method AddControl Adds a ControlBuilder object in the page control tree at the current page parser position.
Public method AllowBaseType Determines whether the page can be derived from the specified Type.
Public method AllowControl Gets a value indicating whether the specified control type is allowed for this page.
Public method AllowServerSideInclude Determines whether a parser permits a specific server-side include on a page.
Public method AllowVirtualReference Determines whether a parser permits a virtual reference to a specific type of resource on a page.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetCompilationMode Retrieves the current compilation mode for the page.
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetNoCompileUserControlType Returns a Type that should be used for pages or controls that are not dynamically compiled.
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method Initialize Initializes a filter used for a page.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ParseComplete Infrastructure. Called by an ASP.NET page parser to notify a filter when the parsing of a page is complete.
Public method PreprocessDirective Allows the page parser filter to preprocess page directives.
Public method ProcessCodeConstruct Returns a value that indicates whether a code block should be processed by subsequent parser filters.
Public method ProcessDataBindingAttribute Returns a value that indicates whether the parser filter processes a data binding expression in an attribute.
Public method ProcessEventHookup Returns a value that indicates whether event handlers should be processed further by the parser filter.
Protected method SetPageProperty Sets a property on a control derived from the TemplateControl class, which includes the Page, UserControl, and MasterPage controls.
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top

The following example demonstrates how you can create a class that derives from the PageParserFilter class to govern the behavior of the ASP.NET page parser. The CustomPageParserFilter is a parser filter that explicitly rejects code in the page. It does this by overriding the AllowCode property.


namespace Samples.AspNet.CS
{
    [PermissionSet(SecurityAction.Demand, Unrestricted = true)]
    public class CustomPageParserFilter : PageParserFilter
    {
        public override bool AllowCode
        {
            get 
            {
                return false;
            }
        }
    }
}


To use the CustomPageParserFilter sample, place the class in your App_Code directory. You must configure the ASP.NET parsers to use the filter in the pages section of your site's Web.config configuration file. The following example configuration file shows the configuration for CustomPageParserFilter. When configured to use a parser filter, the ASP.NET parser throws an exception during the build if it encounters code in a page.

<?xml version="1.0" ?>

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

<system.web>

<pages

pageParserFilterType="Samples.AspNet.CS.CustomPageParserFilter">

</pages>

</system.web>

</configuration>

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ