Org.Xml.Sax.IContentHandler.EndElement Method
Receive notification of the end of an element.

Syntax

[Android.Runtime.Register("endElement", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetEndElement_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler:Org.Xml.Sax.IContentHandlerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void EndElement (string uri, string localName, string qName)

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 XML name (with prefix), or the empty string if qualified names are not available

Exceptions

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

Remarks

Receive notification of the end of an element.

The SAX parser will invoke this method at the end of every element in the XML document; there will be a corresponding IContentHandler.StartElement(string, System.String, System.String, System.String) event for every endElement event (even when the element is empty).

For information on the names, see startElement.

[Android Documentation]

Requirements

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