XMLFilterImpl.Parse Method

Definition

Overloads

Parse(InputSource)

Parse a document.

Parse(String)

Parse a document.

Parse(InputSource)

Parse a document.

[Android.Runtime.Register("parse", "(Lorg/xml/sax/InputSource;)V", "GetParse_Lorg_xml_sax_InputSource_Handler")]
public virtual void Parse (Org.Xml.Sax.InputSource? input);
[<Android.Runtime.Register("parse", "(Lorg/xml/sax/InputSource;)V", "GetParse_Lorg_xml_sax_InputSource_Handler")>]
abstract member Parse : Org.Xml.Sax.InputSource -> unit
override this.Parse : Org.Xml.Sax.InputSource -> unit

Parameters

input
InputSource

The input source for the document entity.

Implements

Attributes

Exceptions

Any SAX exception, possibly wrapping another exception.

An IO exception from the parser, possibly from a byte stream or character stream supplied by the application.

Remarks

Parse a document.

Java documentation for org.xml.sax.helpers.XMLFilterImpl.parse(org.xml.sax.InputSource).

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

Parse(String)

Parse a document.

[Android.Runtime.Register("parse", "(Ljava/lang/String;)V", "GetParse_Ljava_lang_String_Handler")]
public virtual void Parse (string? systemId);
[<Android.Runtime.Register("parse", "(Ljava/lang/String;)V", "GetParse_Ljava_lang_String_Handler")>]
abstract member Parse : string -> unit
override this.Parse : string -> unit

Parameters

systemId
String

The system identifier as a fully-qualified URI.

Implements

Attributes

Exceptions

Any SAX exception, possibly wrapping another exception.

An IO exception from the parser, possibly from a byte stream or character stream supplied by the application.

Remarks

Parse a document.

Java documentation for org.xml.sax.helpers.XMLFilterImpl.parse(java.lang.String).

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