Org.Xml.Sax.IAttributeList
Interface for an element's attribute specifications.

See Also: IAttributeList Members

Syntax

[Android.Runtime.Register("org/xml/sax/AttributeList", "", "Org.Xml.Sax.IAttributeListInvoker")]
public interface IAttributeList : Android.Runtime.IJavaObject, IDisposable

Remarks

Interface for an element's attribute specifications.

This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY. See for further information.

This is the original SAX1 interface for reporting an element's attributes. Unlike the new Org.Xml.Sax.IAttributes interface, it does not support Namespace-related information.

When an attribute list is supplied as part of a IDocumentHandler.StartElement(string, Org.Xml.Sax.IAttributeList) event, the list will return valid results only during the scope of the event; once the event handler returns control to the parser, the attribute list is invalid. To save a persistent copy of the attribute list, use the SAX1 Org.Xml.Sax.Helpers.AttributeListImpl helper class.

An attribute list includes only attributes that have been specified or defaulted: #IMPLIED attributes will not be included.

There are two ways for the SAX application to obtain information from the AttributeList. First, it can iterate through the entire list:

java Example

 public void startElement (String name, AttributeList atts) {
   for (int i = 0; i 

(Note that the result of getLength() will be zero if there are no attributes.)

java Example

 public void startElement (String name, AttributeList atts) {
   String identifier = atts.getValue("id");
   String label = atts.getValue("label");
   [...]
 }
 

As an alternative, the application can request the value or type of specific attributes:

See Also

[Android Documentation]

Requirements

Namespace: Org.Xml.Sax
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1Deprecated since API level 1