XMLFilterImpl Constructors

Definition

Overloads

XMLFilterImpl()

Construct an empty XML filter, with no parent.

XMLFilterImpl(IXMLReader)

Construct an XML filter with the specified parent.

XMLFilterImpl(IntPtr, JniHandleOwnership)

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

XMLFilterImpl()

Construct an empty XML filter, with no parent.

[Android.Runtime.Register(".ctor", "()V", "")]
public XMLFilterImpl ();
Attributes

Remarks

Construct an empty XML filter, with no parent.

This filter will have no parent: you must assign a parent before you start a parse or do any configuration with setFeature or setProperty, unless you use this as a pure event consumer rather than as an XMLReader.

Java documentation for org.xml.sax.helpers.XMLFilterImpl.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.

See also

  • <xref:Org.Xml.Sax.IXMLReader.SetFeature(System.String%2c+System.Boolean)>
  • <xref:Org.Xml.Sax.IXMLReader.SetProperty(System.String%2c+Java.Lang.Object)>
  • Parent

Applies to

XMLFilterImpl(IXMLReader)

Construct an XML filter with the specified parent.

[Android.Runtime.Register(".ctor", "(Lorg/xml/sax/XMLReader;)V", "")]
public XMLFilterImpl (Org.Xml.Sax.IXMLReader? parent);
[<Android.Runtime.Register(".ctor", "(Lorg/xml/sax/XMLReader;)V", "")>]
new Org.Xml.Sax.Helpers.XMLFilterImpl : Org.Xml.Sax.IXMLReader -> Org.Xml.Sax.Helpers.XMLFilterImpl

Parameters

parent
IXMLReader

the XML reader from which this filter receives its events.

Attributes

Remarks

Construct an XML filter with the specified parent.

Java documentation for org.xml.sax.helpers.XMLFilterImpl.XMLFilterImpl(org.xml.sax.XMLReader).

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.

See also

Applies to

XMLFilterImpl(IntPtr, JniHandleOwnership)

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

protected XMLFilterImpl (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Org.Xml.Sax.Helpers.XMLFilterImpl : nativeint * Android.Runtime.JniHandleOwnership -> Org.Xml.Sax.Helpers.XMLFilterImpl

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

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