Org.Xml.Sax.IParser.Parse Method
Parse an XML document from a system identifier (URI).

Syntax

[Android.Runtime.Register("parse", "(Ljava/lang/String;)V", "GetParse_Ljava_lang_String_Handler:Org.Xml.Sax.IParserInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void Parse (string systemId)

See Also

IParser.Parse(InputSource)

Parameters

systemId
The system identifier (URI).

Exceptions

TypeReason
Org.Xml.Sax.SAXExceptionAny SAX exception, possibly wrapping another exception.
Java.IO.IOExceptionAn IO exception from the parser, possibly from a byte stream or character stream supplied by the application.

Remarks

Parse an XML document from a system identifier (URI).

java Example

 parse(new InputSource(systemId));
 

This method is a shortcut for the common case of reading a document from a system identifier. It is the exact equivalent of the following:

If the system identifier is a URL, it must be fully resolved by the application before it is passed to the parser.

[Android Documentation]

Requirements

Namespace: Org.Xml.Sax
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1