C# Class GitForce.ExecResult

* Simple case: execute one command: Run() returns when the command completes return structure including the stdout safety built-in: self-terminate if there is no response within some time * More complex case: AsyncRun() command takes more time: asynchronous execution with a completion callback callbacks for stdout and stderr can terminate execution from another thread: Terminate()
Datei anzeigen Open project: gdevic/GitForce Class Usage Examples

Public Properties

Property Type Description
retcode int
stderr string
stdout string

Public Methods

Method Description
Success ( ) : bool
ToString ( ) : string

Method Details

Success() public method

public Success ( ) : bool
return bool

ToString() public method

public ToString ( ) : string
return string

Property Details

retcode public_oe property

public int retcode
return int

stderr public_oe property

public string stderr
return string

stdout public_oe property

public string stdout
return string