MobilePage.AddParsedSubObject(Object) Method

Definition

Notifies the page that an element was parsed, and adds the element to the Controls property. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

protected:
 override void AddParsedSubObject(System::Object ^ o);
protected override void AddParsedSubObject (object o);
override this.AddParsedSubObject : obj -> unit
Protected Overrides Sub AddParsedSubObject (o As Object)

Parameters

o
Object

An Object that represents the parsed element.

Exceptions

The StyleSheet property has already been set.

Remarks

Unless you override it, this method automatically adds LiteralControl objects to the server control's ControlCollection object. This collection can be accessed through the Controls property.

This member overrides the Control.AddParsedSubObject method to determine whether the object is a StyleSheet before it calls the base method. If the object is of type StyleSheet, the StyleSheet property is set to the o parameter.

Applies to

See also