IParserAccessor Interface
Defines the method that ASP.NET server controls must implement to recognize when elements, either HTML or XML, are parsed.
For a list of all members of this type, see IParserAccessor Members.
[Visual Basic] Public Interface IParserAccessor [C#] public interface IParserAccessor [C++] public __gc __interface IParserAccessor [JScript] public interface IParserAccessor
Classes that Implement IParserAccessor
| Class | Description |
|---|---|
| Control | Defines the properties, methods, and events that are shared by all ASP.NET server controls. |
| ListItem | Represents a data item in a data-bound list control. This class cannot be inherited. |
Remarks
When elements are parsed, they are recognized as children of the server control that implements this interface. These elements are converted to objects. When you implement this interface, the control you create defines what processing occurs once it has been notified that an element has been parsed.
Since the Control class implements this interface, it is easier to extend that class and override its implmentation of the AddParsedSubObject method than to implement this interface yourself.
Requirements
Namespace: System.Web.UI
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
Assembly: System.Web (in System.Web.dll)
See Also
IParserAccessor Members | System.Web.UI Namespace | Control | ControlCollection | Control.Controls