ParserAdapter.Parse Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Parse(InputSource) |
Parse an XML document. |
Parse(String) |
Parse an XML document. |
Parse(InputSource)
Parse an XML 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
An input source for the document.
Implements
- Attributes
Exceptions
If there is a problem reading the raw content of the document.
If there is a problem processing the document.
Remarks
Parse an XML document.
Java documentation for org.xml.sax.helpers.ParserAdapter.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.
See also
Applies to
Parse(String)
Parse an XML 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 absolute URL of the document.
Implements
- Attributes
Exceptions
If there is a problem reading the raw content of the document.
If there is a problem processing the document.
Remarks
Parse an XML document.
Java documentation for org.xml.sax.helpers.ParserAdapter.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.