This documentation is archived and is not being maintained.
PageParserFilter::ProcessEventHookup Method
Visual Studio 2010
Returns a value that indicates whether event handlers should be processed further by the parser filter.
Assembly: System.Web (in System.Web.dll)
public: virtual bool ProcessEventHookup( String^ controlId, String^ eventName, String^ handlerName )
Parameters
- controlId
- Type: System::String
The ID of the control whose event has the event handler to process.
- eventName
- Type: System::String
The event name of the controlID to filter on.
- handlerName
- Type: System::String
The handler of the eventName name to filter on.
Return Value
Type: System::Booleantrue if the parser processes event handlers; otherwise, false. The default is false.
You can override the ProcessEventHookup method to allow the parser to process event hookups when implementing a custom PageParserFilter class. An example of an event handler is providing a handler for the Click event of the Button control.
ProcessEventHookup is introduced in the .NET Framework version 3.5. For more information, see .NET Framework Versions and Dependencies.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, 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.
Show: