IParserAccessor Interface

Definition

Defines the method that ASP.NET server controls must implement to recognize when elements, either HTML or XML, are parsed.

public interface class IParserAccessor
public interface IParserAccessor
type IParserAccessor = interface
Public Interface IParserAccessor
Derived

Remarks

When elements are parsed, they are recognized as child controls 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.

Because the Control class implements this interface, it is easier to extend that class and override its implementation of the AddParsedSubObject method than to implement this interface yourself.

Methods

AddParsedSubObject(Object)

When implemented by an ASP.NET server control, notifies the server control that an element, either XML or HTML, was parsed.

Applies to

See also