XMLFilterImpl.Parent Property

Definition

Get the parent reader. -or- Set the parent reader.

public virtual Org.Xml.Sax.IXMLReader? Parent { [Android.Runtime.Register("getParent", "()Lorg/xml/sax/XMLReader;", "GetGetParentHandler")] get; [Android.Runtime.Register("setParent", "(Lorg/xml/sax/XMLReader;)V", "GetSetParent_Lorg_xml_sax_XMLReader_Handler")] set; }
[<get: Android.Runtime.Register("getParent", "()Lorg/xml/sax/XMLReader;", "GetGetParentHandler")>]
[<set: Android.Runtime.Register("setParent", "(Lorg/xml/sax/XMLReader;)V", "GetSetParent_Lorg_xml_sax_XMLReader_Handler")>]
member this.Parent : Org.Xml.Sax.IXMLReader with get, set

Property Value

The parent XML reader, or null if none is set.

Implements

Attributes

Remarks

Property getter documentation:

Get the parent reader.

Java documentation for org.xml.sax.helpers.XMLFilterImpl.getParent().

Property setter documentation:

Set the parent reader.

This is the org.xml.sax.XMLReader XMLReader from which this filter will obtain its events and to which it will pass its configuration requests. The parent may itself be another filter.

If there is no parent reader set, any attempt to parse or to set or get a feature or property will fail.

Java documentation for org.xml.sax.helpers.XMLFilterImpl.setParent(org.xml.sax.XMLReader).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

See also