C# Класс Fuzzer.IO.ConsoleIO.ConsoleProcess

Baseclass for processes that get started and interact with its host process using standard in/output
Наследование: IDisposable
Показать файл Открыть проект

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

Метод Описание
ConsoleProcess ( ) : System
Dispose ( ) : void

Защищенные методы

Метод Описание
KillProcess ( ) : void

Forces the process to exit

ReadChar ( ) : char

Reads the next character from the stdout of the target process

ReadLine ( ) : string

Read a single line from the target process

StartProcess ( ) : void

Starts the process specified by the inherited class

Write ( string format ) : void

Write the specified objects with the specified format to the process stdin

WriteLine ( string format ) : void

See Write

Приватные методы

Метод Описание
AssertProcess ( ) : void

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

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

public ConsoleProcess ( ) : System
Результат System

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

public Dispose ( ) : void
Результат void

KillProcess() защищенный Метод

Forces the process to exit
protected KillProcess ( ) : void
Результат void

ReadChar() защищенный Метод

Reads the next character from the stdout of the target process
protected ReadChar ( ) : char
Результат char

ReadLine() защищенный Метод

Read a single line from the target process
protected ReadLine ( ) : string
Результат string

StartProcess() защищенный Метод

Starts the process specified by the inherited class
protected StartProcess ( ) : void
Результат void

Write() защищенный Метод

Write the specified objects with the specified format to the process stdin
protected Write ( string format ) : void
format string Format of the string to write
Результат void

WriteLine() защищенный Метод

See Write
protected WriteLine ( string format ) : void
format string
Результат void