IXmlPullParser.Types Property

Definition

This array can be used to convert the event type integer constants such as START_TAG or TEXT to to a string.

[Android.Runtime.Register("TYPES")]
public static System.Collections.Generic.IList<string>? Types { get; }
[<Android.Runtime.Register("TYPES")>]
static member Types : System.Collections.Generic.IList<string>

Property Value

Attributes

Remarks

This array can be used to convert the event type integer constants such as START_TAG or TEXT to to a string. For example, the value of TYPES[START_TAG] is the string "START_TAG".

This array is intended for diagnostic output only. Relying on the contents of the array may be dangerous since malicious applications may alter the array, although it is final, due to limitations of the Java language.

Java documentation for org.xmlpull.v1.XmlPullParser.TYPES.

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