DefaultHandler.EndElement(String, String, String) Method

Definition

Receive notification of the end of an element.

[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")]
public virtual void EndElement (string? uri, string? localName, string? qName);
[<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")>]
abstract member EndElement : string * string * string -> unit
override this.EndElement : string * string * string -> unit

Parameters

uri
String

The Namespace URI, or the empty string if the element has no Namespace URI or if Namespace processing is not being performed.

localName
String

The local name (without prefix), or the empty string if Namespace processing is not being performed.

qName
String

The qualified name (with prefix), or the empty string if qualified names are not available.

Implements

Attributes

Exceptions

Any SAX exception, possibly wrapping another exception.

Remarks

Receive notification of the end of an element.

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

Java documentation for org.xml.sax.helpers.DefaultHandler.endElement(java.lang.String, java.lang.String, java.lang.String).

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

  • <xref:Org.Xml.Sax.IContentHandler.EndElement(System.String%2c+System.String%2c+System.String)>