IXMLFilter Interface

Definition

Interface for an XML filter.

[Android.Runtime.Register("org/xml/sax/XMLFilter", "", "Org.Xml.Sax.IXMLFilterInvoker")]
public interface IXMLFilter : IDisposable, Java.Interop.IJavaPeerable, Org.Xml.Sax.IXMLReader
[<Android.Runtime.Register("org/xml/sax/XMLFilter", "", "Org.Xml.Sax.IXMLFilterInvoker")>]
type IXMLFilter = interface
    interface IXMLReader
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
Derived
Attributes
Implements

Remarks

Interface for an XML filter.

<blockquote> <em>This module, both source code and documentation, is in the Public Domain, and comes with <strong>NO WARRANTY</strong>.</em> See http://www.saxproject.org for further information. </blockquote>

An XML filter is like an XML reader, except that it obtains its events from another XML reader rather than a primary source like an XML document or database. Filters can modify a stream of events as they pass on to the final application.

The XMLFilterImpl helper class provides a convenient base for creating SAX2 filters, by passing on all org.xml.sax.EntityResolver EntityResolver, org.xml.sax.DTDHandler DTDHandler, org.xml.sax.ContentHandler ContentHandler and org.xml.sax.ErrorHandler ErrorHandler events automatically.

Added in SAX 2.0.

Java documentation for org.xml.sax.XMLFilter.

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.

Properties

ContentHandler

Return the current content handler.

(Inherited from IXMLReader)
DTDHandler

Return the current DTD handler.

(Inherited from IXMLReader)
EntityResolver

Return the current entity resolver.

(Inherited from IXMLReader)
ErrorHandler

Return the current error handler.

(Inherited from IXMLReader)
Handle

Gets the JNI value of the underlying Android object.

(Inherited from IJavaObject)
JniIdentityHashCode

Returns the value of java.lang.System.identityHashCode() for the wrapped instance.

(Inherited from IJavaPeerable)
JniManagedPeerState

State of the managed peer.

(Inherited from IJavaPeerable)
JniPeerMembers

Member access and invocation support.

(Inherited from IJavaPeerable)
Parent

Get the parent reader.

PeerReference

Returns a JniObjectReference of the wrapped Java object instance.

(Inherited from IJavaPeerable)

Methods

Disposed()

Called when the instance has been disposed.

(Inherited from IJavaPeerable)
DisposeUnlessReferenced()

If there are no outstanding references to this instance, then calls Dispose(); otherwise, does nothing.

(Inherited from IJavaPeerable)
Finalized()

Called when the instance has been finalized.

(Inherited from IJavaPeerable)
GetFeature(String)

Look up the value of a feature flag.

(Inherited from IXMLReader)
GetProperty(String)

Look up the value of a property.

(Inherited from IXMLReader)
Parse(InputSource)

Parse an XML document.

(Inherited from IXMLReader)
Parse(String)

Parse an XML document from a system identifier (URI).

(Inherited from IXMLReader)
SetFeature(String, Boolean)

Set the value of a feature flag.

(Inherited from IXMLReader)
SetJniIdentityHashCode(Int32)

Set the value returned by JniIdentityHashCode.

(Inherited from IJavaPeerable)
SetJniManagedPeerState(JniManagedPeerStates) (Inherited from IJavaPeerable)
SetPeerReference(JniObjectReference)

Set the value returned by PeerReference.

(Inherited from IJavaPeerable)
SetProperty(String, Object)

Set the value of a property.

(Inherited from IXMLReader)
UnregisterFromRuntime()

Unregister this instance so that the runtime will not return it from future Java.Interop.JniRuntime+JniValueManager.PeekValue invocations.

(Inherited from IJavaPeerable)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)
ParseAsync(IXMLReader, InputSource)
ParseAsync(IXMLReader, String)

Applies to