C# Класс 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()
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
retcode int
stderr string
stdout string

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

Метод Описание
Success ( ) : bool
ToString ( ) : string

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

Success() публичный Метод

public Success ( ) : bool
Результат bool

ToString() публичный Метод

public ToString ( ) : string
Результат string

Описание свойств

retcode публичное свойство

public int retcode
Результат int

stderr публичное свойство

public string stderr
Результат string

stdout публичное свойство

public string stdout
Результат string