PageParserFilter.ProcessCodeConstruct Method
Returns a value that indicates whether a code block should be processed by subsequent parser filters.
Assembly: System.Web (in System.Web.dll)
'Declaration Public Overridable Function ProcessCodeConstruct ( _ codeType As CodeConstructType, _ code As String _ ) As Boolean 'Usage Dim instance As PageParserFilter Dim codeType As CodeConstructType Dim code As String Dim returnValue As Boolean returnValue = instance.ProcessCodeConstruct(codeType, _ code)
Parameters
- codeType
- Type: System.Web.UI.CodeConstructType
One of the CodeConstructType enumeration values that identifies the type of the code construct.
- code
- Type: System.String
The string literal that contains the code inside the code construct.
Return Value
Type: System.Booleantrue if the parser should process a code construct further; otherwise, false. The default is false.
You can override the ProcessCodeConstruct method to parse code contained in code constructs when implementing a custom PageParserFilter. After processing the code, this method returns true if the parser should process the code further; otherwise, it returns false.
The type of allowed code constructs are the CodeConstructType enumeration values.
ProcessCodeConstruct is introduced in the .NET Framework version 3.5. For more information, see .NET Framework 3.5 Architecture.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.