C# 클래스 Ghostscript.NET.GhostscriptStdIO

Represents a base Ghostscript standard input output handler.
파일 보기 프로젝트 열기: jhabjan/Ghostscript.NET 1 사용 예제들

공개 메소드들

메소드 설명
GhostscriptStdIO ( bool handleStdIn, bool handleStdOut, bool handleStdErr ) : System

Initializes a new instance of the Ghostscript.NET.GhostscriptStdIO class.

StdError ( string error ) : void

Abstract standard error method.

StdIn ( string &input, int count ) : void

Abstract standard input method.

StdOut ( string output ) : void

Abstract standard output method.

비공개 메소드들

메소드 설명
gs_std_err ( IntPtr handle, IntPtr pointer, int count ) : int

Handles errors.

gs_std_in ( IntPtr handle, IntPtr pointer, int count ) : int

Standard input handler.

gs_std_out ( IntPtr handle, IntPtr pointer, int count ) : int

Handles standard output.

메소드 상세

GhostscriptStdIO() 공개 메소드

Initializes a new instance of the Ghostscript.NET.GhostscriptStdIO class.
public GhostscriptStdIO ( bool handleStdIn, bool handleStdOut, bool handleStdErr ) : System
handleStdIn bool Whether or not to handle Ghostscript standard input.
handleStdOut bool Whether or not to handle Ghostscript standard output.
handleStdErr bool Whether or not to handle Ghostscript standard errors.
리턴 System

StdError() 공개 추상적인 메소드

Abstract standard error method.
public abstract StdError ( string error ) : void
error string Error data.
리턴 void

StdIn() 공개 추상적인 메소드

Abstract standard input method.
public abstract StdIn ( string &input, int count ) : void
input string Input data.
count int Expected size of the input data.
리턴 void

StdOut() 공개 추상적인 메소드

Abstract standard output method.
public abstract StdOut ( string output ) : void
output string Output data.
리턴 void