IAttributes2 接口

定义

SAX2 扩展,用于扩充提供 Attributes的每个属性信息。

[Android.Runtime.Register("org/xml/sax/ext/Attributes2", "", "Org.Xml.Sax.Ext.IAttributes2Invoker")]
public interface IAttributes2 : IDisposable, Java.Interop.IJavaPeerable, Org.Xml.Sax.IAttributes
[<Android.Runtime.Register("org/xml/sax/ext/Attributes2", "", "Org.Xml.Sax.Ext.IAttributes2Invoker")>]
type IAttributes2 = interface
    interface IAttributes
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
派生
属性
实现

注解

SAX2 扩展,用于扩充提供 Attributes的每个属性信息。 如果实现支持此扩展,则所提供的org.xml.sax.ContentHandler#startElement ContentHandler.startElement() 属性将实现此接口,em<>http://xml.org/sax/features/use-attributes2</em> 功能标志将具有值 <em>true</em>。

<blockquote><em>This module, both source code and documentation, is in the Public Domain, with <strong NO WARRANTY</strong>>.</em></blockquote>

XMLReader 实现不是支持此信息所必需的,它不是仅限核心的 SAX2 发行版的一部分。

请注意,如果属性已默认(<em>!isSpecified()</em>),则还必须在 DTD 中声明(<em>isDeclared()</em>。 同样,如果属性的类型是除 CDATA 以外的任何内容,则必须声明它。

在 SAX 2.0 中添加(extensions 1.1 alpha)。

适用于 . 的 org.xml.sax.ext.Attributes2Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

属性

Handle

获取基础 Android 对象的 JNI 值。

(继承自 IJavaObject)
JniIdentityHashCode

返回包装实例的值 java.lang.System.identityHashCode()

(继承自 IJavaPeerable)
JniManagedPeerState

托管对等方的状态。

(继承自 IJavaPeerable)
JniPeerMembers

成员访问和调用支持。

(继承自 IJavaPeerable)
Length

返回列表中的属性数。

(继承自 IAttributes)
PeerReference

返回 JniObjectReference 包装的 Java 对象实例。

(继承自 IJavaPeerable)

方法

Disposed()

在释放实例时调用。

(继承自 IJavaPeerable)
DisposeUnlessReferenced()

如果没有对此实例的未完成引用,则调用 Dispose();否则不执行任何操作。

(继承自 IJavaPeerable)
Finalized()

在实例完成时调用。

(继承自 IJavaPeerable)
GetIndex(String)

按 XML 限定(前缀)名称查找属性的索引。

(继承自 IAttributes)
GetIndex(String, String)

按命名空间名称查找属性的索引。

(继承自 IAttributes)
GetLocalName(Int32)

按索引查找属性的本地名称。

(继承自 IAttributes)
GetQName(Int32)

按索引查找属性的 XML 限定(前缀)名称。

(继承自 IAttributes)
GetType(Int32)

按索引查找属性的类型。

(继承自 IAttributes)
GetType(String)

按 XML 限定(前缀)名称查找属性的类型。

(继承自 IAttributes)
GetType(String, String)

按命名空间名称查找属性的类型。

(继承自 IAttributes)
GetURI(Int32)

按索引查找属性的命名空间 URI。

(继承自 IAttributes)
GetValue(Int32)

按索引查找特性的值。

(继承自 IAttributes)
GetValue(String)

按 XML 限定(前缀)名称查找特性的值。

(继承自 IAttributes)
GetValue(String, String)

按命名空间名称查找特性的值。

(继承自 IAttributes)
IsDeclared(Int32)

除非在 DTD 中声明了该属性,否则返回 false。

IsDeclared(String)

除非在 DTD 中声明了该属性,否则返回 false。

IsDeclared(String, String)

除非在 DTD 中声明了该属性,否则返回 false。

IsSpecified(Int32)

返回 true,除非 DTD 默认提供属性值。

IsSpecified(String)

返回 true,除非 DTD 默认提供属性值。

IsSpecified(String, String)

返回 true,除非 DTD 默认提供属性值。

SetJniIdentityHashCode(Int32)

设置由 JniIdentityHashCode. 返回的值。

(继承自 IJavaPeerable)
SetJniManagedPeerState(JniManagedPeerStates)

SAX2 扩展,用于扩充提供 Attributes的每个属性信息。

(继承自 IJavaPeerable)
SetPeerReference(JniObjectReference)

设置由 PeerReference. 返回的值。

(继承自 IJavaPeerable)
UnregisterFromRuntime()

取消注册此实例,以便运行时不会从将来 Java.Interop.JniRuntime+JniValueManager.PeekValue 的调用中返回它。

(继承自 IJavaPeerable)

扩展方法

JavaCast<TResult>(IJavaObject)

执行 Android 运行时检查的类型转换。

JavaCast<TResult>(IJavaObject)

SAX2 扩展,用于扩充提供 Attributes的每个属性信息。

GetJniTypeName(IJavaPeerable)

SAX2 扩展,用于扩充提供 Attributes的每个属性信息。

适用于