IncomingCommand.

ParseStandardOutputForResults(int, string) Method

Summary

This method should parse and store the appropriate execution result output according to the type of data the command line client would return for the command.
Assembly
Mercurial.Net.dll
Namespace
Mercurial
Containing Type
IncomingCommand

Syntax

protected override void ParseStandardOutputForResults(int exitCode, string standardOutput)

Remarks

Note that as long as you descend from MercurialCommandBase<T> you're not required to call the base method at all.

Parameters

Name Type Description
exitCode int The exit code from executing the command line client.
standardOutput string The standard output from executing the command line client.

Return Value

Type Description
void