C# 클래스 Mercurial.RepositorySummary

This class contains a summary of the repository state, as returned by the SummaryCommand.
파일 보기 프로젝트 열기: TargetProcess/Target-Process-Plugins 1 사용 예제들

공개 메소드들

메소드 설명
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