IParserExtensions.ParseAsync 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
| Name | Description |
|---|---|
| ParseAsync(IParser, InputSource) |
Asynchronously parses an XML document from an input source. |
| ParseAsync(IParser, String) |
Asynchronously parses an XML document from a system identifier. |
ParseAsync(IParser, InputSource)
Asynchronously parses an XML document from an input source.
public static System.Threading.Tasks.Task ParseAsync(this Org.Xml.Sax.IParser self, Org.Xml.Sax.InputSource? source);
static member ParseAsync : Org.Xml.Sax.IParser * Org.Xml.Sax.InputSource -> System.Threading.Tasks.Task
Parameters
- self
- IParser
The parser to use.
- source
- 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(IParser, String)
Asynchronously parses an XML document from a system identifier.
public static System.Threading.Tasks.Task ParseAsync(this Org.Xml.Sax.IParser self, string? systemId);
static member ParseAsync : Org.Xml.Sax.IParser * string -> System.Threading.Tasks.Task
Parameters
- self
- IParser
The parser 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.