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
- localName
- String
- qName
- String
- 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.