C# Класс Mercurial.RepositorySummary

This class contains a summary of the repository state, as returned by the SummaryCommand.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Parse ( string standardOutput ) : RepositorySummary

Parses the standard output from executing a 'hg summary' command and returns a RepositorySummary.

Приватные методы

Метод Описание
ParseBranch ( RepositorySummary summary, string line, Match match ) : void

Parses the branch: line from the summary command.

ParseCommit ( RepositorySummary summary, string line, Match match ) : void

Parses the commit: line from the summary command.

ParseParents ( RepositorySummary summary, string line, Match match ) : void

Parses the parent: line from the summary command.

ParseUpdate ( RepositorySummary summary, string line, Match match ) : void

Parses the update: line from the summary command.

Описание методов

Parse() публичный статический Метод

Parses the standard output from executing a 'hg summary' command and returns a RepositorySummary.
/// is null. ///
public static Parse ( string standardOutput ) : RepositorySummary
standardOutput string /// The standard output from a 'hg summary' command that is to be parsed. ///
Результат RepositorySummary