Język

Driver.ParseAsync Method

Definition

Overloads

Name Description
ParseAsync(InputSource)

Asynchronously parses an XML document from the specified input source.

ParseAsync(String)

Asynchronously parses an XML document from a system identifier.

ParseAsync(InputSource)

Asynchronously parses an XML document from the specified input source.

public System.Threading.Tasks.Task ParseAsync(Org.Xml.Sax.InputSource? source);
member this.ParseAsync : Org.Xml.Sax.InputSource -> System.Threading.Tasks.Task

Parameters

source
InputSource

The input source for the top level of the XML document.

Returns

A task that represents the asynchronous 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(String)

Asynchronously parses an XML document from a system identifier.

public System.Threading.Tasks.Task ParseAsync(string? systemId);
member this.ParseAsync : string -> System.Threading.Tasks.Task

Parameters

systemId
String

The system identifier (URI).

Returns

A task that represents the asynchronous 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