Summary
This class implements a basic XML-based changeset parser, that parses changeset information
as reported by the Mercurial command line client, in XML format.
- Assembly
- Mercurial
.Net .dll - Namespace
- Mercurial
- Base Types
-
- object
graph TD
Base0["object"]-->Type
Type["ChangesetXmlParser"]
class Type type-node
Syntax
public static class ChangesetXmlParser
Methods
Name | Value | Summary |
---|---|---|
LazyParse |
IEnumerable |
Parse the given XML lazily and return a collection of
Changeset
objects for the information contained in it, in the order the changesets
appear in the xml.
static
|
Parse |
Changeset[] |
Parse the given XML and return
Changeset objects for the information
contained in it, ordered in descending order by the revision numbers (ie.
latest changeset first.)
static
|