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()
Afficher le fichier Open project: gdevic/GitForce Class Usage Examples

Méthodes publiques

Свойство Type Description
retcode int
stderr string
stdout string

Méthodes publiques

Méthode Description
Success ( ) : bool
ToString ( ) : string

Method Details

Success() public méthode

public Success ( ) : bool
Résultat bool

ToString() public méthode

public ToString ( ) : string
Résultat string

Property Details

retcode public_oe property

public int retcode
Résultat int

stderr public_oe property

public string stderr
Résultat string

stdout public_oe property

public string stdout
Résultat string