XMLFilterImpl Class

Definition

Base class for deriving an XML filter.

[Android.Runtime.Register("org/xml/sax/helpers/XMLFilterImpl", DoNotGenerateAcw=true)]
public class XMLFilterImpl : Java.Lang.Object, IDisposable, Java.Interop.IJavaPeerable, Org.Xml.Sax.IContentHandler, Org.Xml.Sax.IDTDHandler, Org.Xml.Sax.IEntityResolver, Org.Xml.Sax.IErrorHandler, Org.Xml.Sax.IXMLFilter
[<Android.Runtime.Register("org/xml/sax/helpers/XMLFilterImpl", DoNotGenerateAcw=true)>]
type XMLFilterImpl = class
    inherit Object
    interface IContentHandler
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
    interface IDTDHandler
    interface IEntityResolver
    interface IErrorHandler
    interface IXMLFilter
    interface IXMLReader
Inheritance
XMLFilterImpl
Attributes
Implements

Remarks

Base class for deriving 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>

This class is designed to sit between an org.xml.sax.XMLReader XMLReader and the client application's event handlers. By default, it does nothing but pass requests up to the reader and events on to the handlers unmodified, but subclasses can override specific methods to modify the event stream or the configuration requests as they pass through.

Added in SAX 2.0.

Java documentation for org.xml.sax.helpers.XMLFilterImpl.

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.

Constructors

XMLFilterImpl()

Construct an empty XML filter, with no parent.

XMLFilterImpl(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

XMLFilterImpl(IXMLReader)

Construct an XML filter with the specified parent.

Properties

Class

Returns the runtime class of this Object.

(Inherited from Object)
ContentHandler

Get the content event handler. -or- Set the content event handler.

DTDHandler

Get the current DTD event handler. -or- Set the DTD event handler.

EntityResolver

Get the current entity resolver. -or- Set the entity resolver.

ErrorHandler

Get the current error event handler. -or- Set the error event handler.

Handle

The handle to the underlying Android instance.

(Inherited from Object)
JniIdentityHashCode (Inherited from Object)
JniPeerMembers
Parent

Get the parent reader. -or- Set the parent reader.

PeerReference (Inherited from Object)
ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Methods

Characters(Char[], Int32, Int32)

Filter a character data event.

Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
EndDocument()

Filter an end document event.

EndElement(String, String, String)

Filter an end element event.

EndPrefixMapping(String)

Filter an end Namespace prefix mapping event.

Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
Error(SAXParseException)

Filter an error event.

FatalError(SAXParseException)

Filter a fatal error event.

GetFeature(String)

Look up the value of a feature.

GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
GetProperty(String)

Look up the value of a property.

IgnorableWhitespace(Char[], Int32, Int32)

Filter an ignorable whitespace event.

JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
NotationDecl(String, String, String)

Filter a notation declaration event.

Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
Parse(InputSource)

Parse a document.

Parse(String)

Parse a document.

ProcessingInstruction(String, String)

Filter a processing instruction event.

ResolveEntity(String, String)

Filter an external entity resolution.

SetDocumentLocator(ILocator)

Filter a new document locator event.

SetFeature(String, Boolean)

Set the value of a feature.

SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
SetProperty(String, Object)

Set the value of a property.

SkippedEntity(String)

Filter a skipped entity event.

StartDocument()

Filter a start document event.

StartElement(String, String, String, IAttributes)

Filter a start element event.

StartPrefixMapping(String, String)

Filter a start Namespace prefix mapping event.

ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnparsedEntityDecl(String, String, String, String)

Filter an unparsed entity declaration event.

UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Warning(SAXParseException)

Filter a warning event.

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

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