MobilePage.AddParsedSubObject(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.