PagesSection.PageParserFilterType Property
.NET Framework 3.0
Gets or sets a value that specifies the parser filter type.
Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public String get_PageParserFilterType () /** @property */ public void set_PageParserFilterType (String value)
public function get PageParserFilterType () : String public function set PageParserFilterType (value : String)
Not applicable.
Property Value
A string that specifies the parser filter type.A parser filter, which is an instance of the PageParserFilter class, is called by the page compilation process before the parsing step to allow for changes to the source code at run time.
The following code example shows how to use the PageParserFilterType property.
// Get the current PageParserFilterType property value. Console.WriteLine( "Current PageParserFilterType value: '{0}'", pagesSection.PageParserFilterType); // Set the PageParserFilterType property to // "MyNameSpace.AllowOnlySafeControls". pagesSection.PageParserFilterType = "MyNameSpace.AllowOnlySafeControls";