C# Class CsDebugScript.Executor

Inheritance: IExecutor
Exibir arquivo Open project: southpolenator/WinDbgCs

Public Methods

Method Description
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.

Method Details

EnterInteractiveMode() public method

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

Execute() public static method

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

ExecuteScript() public method

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

ExecuteScript() public method

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

InitializeContext() public method

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

Interpret() public method

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

InterpretInteractive() public static method

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

OpenUI() public method

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

ShowInteractiveWindow() public static method

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