Language

IXMLReaderExtensions.ParseAsync Method

Definition

Overloads

Name Description
ParseAsync(IXMLReader, InputSource)

Asynchronously parses an XML document from an input source.

ParseAsync(IXMLReader, String)

Asynchronously parses an XML document from a system identifier.

ParseAsync(IXMLReader, InputSource)

Asynchronously parses an XML document from an input source.

public static System.Threading.Tasks.Task ParseAsync(this Org.Xml.Sax.IXMLReader self, Org.Xml.Sax.InputSource? input);
static member ParseAsync : Org.Xml.Sax.IXMLReader * Org.Xml.Sax.InputSource -> System.Threading.Tasks.Task

Parameters

self
IXMLReader

The XML reader to use.

input
InputSource

The input source to parse.

Returns

A task that represents the parse operation.

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

ParseAsync(IXMLReader, String)

Asynchronously parses an XML document from a system identifier.

public static System.Threading.Tasks.Task ParseAsync(this Org.Xml.Sax.IXMLReader self, string? systemId);
static member ParseAsync : Org.Xml.Sax.IXMLReader * string -> System.Threading.Tasks.Task

Parameters

self
IXMLReader

The XML reader to use.

systemId
String

The system identifier of the document to parse.

Returns

A task that represents the parse operation.

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