SAXTransformerFactory.NewXMLFilter Method

Definition

Overloads

NewXMLFilter(ISource)

Create an XMLFilter that uses the given Source as the transformation instructions.

NewXMLFilter(ITemplates)

Create an XMLFilter, based on the Templates argument.

NewXMLFilter(ISource)

Create an XMLFilter that uses the given Source as the transformation instructions.

[Android.Runtime.Register("newXMLFilter", "(Ljavax/xml/transform/Source;)Lorg/xml/sax/XMLFilter;", "GetNewXMLFilter_Ljavax_xml_transform_Source_Handler")]
public abstract Org.Xml.Sax.IXMLFilter? NewXMLFilter (Javax.Xml.Transform.ISource? src);
[<Android.Runtime.Register("newXMLFilter", "(Ljavax/xml/transform/Source;)Lorg/xml/sax/XMLFilter;", "GetNewXMLFilter_Ljavax_xml_transform_Source_Handler")>]
abstract member NewXMLFilter : Javax.Xml.Transform.ISource -> Org.Xml.Sax.IXMLFilter

Parameters

src
ISource

The Source of the transformation instructions.

Returns

An XMLFilter object, or null if this feature is not supported.

Attributes

Exceptions

If for some reason the TemplatesHandler cannot be created.

Remarks

Create an XMLFilter that uses the given Source as the transformation instructions.

Java documentation for javax.xml.transform.sax.SAXTransformerFactory.newXMLFilter(javax.xml.transform.Source).

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

NewXMLFilter(ITemplates)

Create an XMLFilter, based on the Templates argument.

[Android.Runtime.Register("newXMLFilter", "(Ljavax/xml/transform/Templates;)Lorg/xml/sax/XMLFilter;", "GetNewXMLFilter_Ljavax_xml_transform_Templates_Handler")]
public abstract Org.Xml.Sax.IXMLFilter? NewXMLFilter (Javax.Xml.Transform.ITemplates? templates);
[<Android.Runtime.Register("newXMLFilter", "(Ljavax/xml/transform/Templates;)Lorg/xml/sax/XMLFilter;", "GetNewXMLFilter_Ljavax_xml_transform_Templates_Handler")>]
abstract member NewXMLFilter : Javax.Xml.Transform.ITemplates -> Org.Xml.Sax.IXMLFilter

Parameters

templates
ITemplates

The compiled transformation instructions.

Returns

An XMLFilter object, or null if this feature is not supported.

Attributes

Exceptions

If for some reason the TemplatesHandler cannot be created.

Remarks

Create an XMLFilter, based on the Templates argument..

Java documentation for javax.xml.transform.sax.SAXTransformerFactory.newXMLFilter(javax.xml.transform.Templates).

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