Driver.StartElement(String, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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.