Share via


HandlerBase.EndElement(String) Method

Definition

Caution

deprecated

Receive notification of the end of an element.

[Android.Runtime.Register("endElement", "(Ljava/lang/String;)V", "GetEndElement_Ljava_lang_String_Handler")]
[System.Obsolete("deprecated")]
public virtual void EndElement (string? name);
[<Android.Runtime.Register("endElement", "(Ljava/lang/String;)V", "GetEndElement_Ljava_lang_String_Handler")>]
[<System.Obsolete("deprecated")>]
abstract member EndElement : string -> unit
override this.EndElement : string -> unit

Parameters

name
String

the element name

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.HandlerBase.endElement(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