Sprache

Driver.StartElement(String, String, String) Method

Definition

Calls ContentHandler#startElement(String, String, String, Attributes) startElement on the ContentHandler with this driver object as the Attributes implementation.

[Android.Runtime.Register("startElement", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetStartElement_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler")]
protected virtual void StartElement(string? namespace, string? localName, string? qName);
[<Android.Runtime.Register("startElement", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetStartElement_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler")>]
abstract member StartElement : string * string * string -> unit
override this.StartElement : string * string * string -> unit

Parameters

namespace
String

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

localName
String

The local element name when namespace processing is enabled; otherwise, the element name as reported by the pull parser.

qName
String

The prefix-qualified element name when a prefix is present; otherwise, the same value as localName.

Attributes

Exceptions

Remarks

Calls ContentHandler#startElement(String, String, String, Attributes) startElement on the ContentHandler with this driver object as the Attributes implementation. In default implementation Attributes object is valid only during this method call and may not be stored. Sub-classes can overwrite this method to cache attributes.

Java documentation for org.xmlpull.v1.sax2.Driver.startElement(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