C# 클래스 Net.XpFramework.Runner.Executor

파일 보기 프로젝트 열기: xp-framework/xp-runners 1 사용 예제들

공개 메소드들

메소드 설명
Execute ( string base_dir, string runner, string tool, string modules, string includes, string args ) : int

Creates and runs the executor instance. Returns the process' exitcode.

Instance ( string base_dir, string runner, string tool, string modules, string includes, string args ) : Process

Creates the executor process instance

Process ( StreamReader reader, TextWriter writer ) : void

비공개 메소드들

메소드 설명
Encode ( string arg ) : string

Encodes a given string for use in a command line argument, using unicode escape sequences. The returned string is enclosed in double quotes. Double quotes and backslashes have been escaped.

Pass ( string arg ) : string

Encodes a given string for use in a command line argument. The returned string is enclosed in double quotes. Double quotes and backslashes have been escaped.

메소드 상세

Execute() 공개 정적인 메소드

Creates and runs the executor instance. Returns the process' exitcode.
public static Execute ( string base_dir, string runner, string tool, string modules, string includes, string args ) : int
base_dir string
runner string
tool string
modules string
includes string
args string
리턴 int

Instance() 공개 정적인 메소드

Creates the executor process instance
public static Instance ( string base_dir, string runner, string tool, string modules, string includes, string args ) : Process
base_dir string
runner string
tool string
modules string
includes string
args string
리턴 Process

Process() 공개 정적인 메소드

public static Process ( StreamReader reader, TextWriter writer ) : void
reader StreamReader
writer TextWriter
리턴 void