C# 클래스 Fuzzer.IO.ConsoleIO.ConsoleProcess

Baseclass for processes that get started and interact with its host process using standard in/output
상속: IDisposable
파일 보기 프로젝트 열기: areiter/InMemoryFuzzing

공개 메소드들

메소드 설명
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