C# 클래스 CsDebugScript.Executor

상속: IExecutor
파일 보기 프로젝트 열기: southpolenator/WinDbgCs

공개 메소드들

메소드 설명
EnterInteractiveMode ( string arguments ) : void

Enters the interactive mode.

Execute ( string path ) : void

Executes the specified script.

ExecuteScript ( string arguments ) : void

Executes the script.

ExecuteScript ( string scriptPath, string args ) : void

Executes the script.

InitializeContext ( IDebugClient client ) : void

Initializes the context.

Interpret ( string arguments ) : void

Interprets C# code.

InterpretInteractive ( string code ) : void

Interprets the C# code as in interactive mode.

OpenUI ( string arguments ) : void

Opens the UI.

ShowInteractiveWindow ( bool modal ) : void

Shows the interactive window.

메소드 상세

EnterInteractiveMode() 공개 메소드

Enters the interactive mode.
public EnterInteractiveMode ( string arguments ) : void
arguments string The arguments
리턴 void

Execute() 공개 정적인 메소드

Executes the specified script.
public static Execute ( string path ) : void
path string The script path.
리턴 void

ExecuteScript() 공개 메소드

Executes the script.
public ExecuteScript ( string arguments ) : void
arguments string The arguments.
리턴 void

ExecuteScript() 공개 메소드

Executes the script.
public ExecuteScript ( string scriptPath, string args ) : void
scriptPath string The script path.
args string The arguments.
리턴 void

InitializeContext() 공개 메소드

Initializes the context.
public InitializeContext ( IDebugClient client ) : void
client IDebugClient The client.
리턴 void

Interpret() 공개 메소드

Interprets C# code.
public Interpret ( string arguments ) : void
arguments string The arguments.
리턴 void

InterpretInteractive() 공개 정적인 메소드

Interprets the C# code as in interactive mode.
public static InterpretInteractive ( string code ) : void
code string The C# code.
리턴 void

OpenUI() 공개 메소드

Opens the UI.
public OpenUI ( string arguments ) : void
arguments string The arguments.
리턴 void

ShowInteractiveWindow() 공개 정적인 메소드

Shows the interactive window.
public static ShowInteractiveWindow ( bool modal ) : void
modal bool if set to true window will be shown as modal dialog.
리턴 void