Org.Xml.Sax.Helpers.DefaultHandler.StartElement Method
Receive notification of the start of an element.

Syntax

[Android.Runtime.Register("startElement", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/xml/sax/Attributes;)V", "GetStartElement_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Lorg_xml_sax_Attributes_Handler")]
public virtual void StartElement (string uri, string localName, string qName, Org.Xml.Sax.IAttributes attributes)

See Also

Org.Xml.Sax.IContentHandler.StartElement(string, System.String, System.String, System.String)

Parameters

uri
The Namespace URI, or the empty string if the element has no Namespace URI or if Namespace processing is not being performed.
localName
The local name (without prefix), or the empty string if Namespace processing is not being performed.
qName
The qualified name (with prefix), or the empty string if qualified names are not available.
attributes
The attributes attached to the element. If there are no attributes, it shall be an empty Attributes object.

Exceptions

TypeReason
Org.Xml.Sax.SAXExceptionAny SAX exception, possibly wrapping another exception.

Remarks

Receive notification of the start of an element.

By default, do nothing. Application writers may override this method in a subclass to take specific actions at the start of each element (such as allocating a new tree node or writing output to a file).

[Android Documentation]

Requirements

Namespace: Org.Xml.Sax.Helpers
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1