C# Class CsDebugScript.Executor

Inheritance: IExecutor
Afficher le fichier Open project: southpolenator/WinDbgCs

Méthodes publiques

Méthode 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 méthode

Enters the interactive mode.
public EnterInteractiveMode ( string arguments ) : void
arguments string The arguments
Résultat void

Execute() public static méthode

Executes the specified script.
public static Execute ( string path ) : void
path string The script path.
Résultat void

ExecuteScript() public méthode

Executes the script.
public ExecuteScript ( string arguments ) : void
arguments string The arguments.
Résultat void

ExecuteScript() public méthode

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

InitializeContext() public méthode

Initializes the context.
public InitializeContext ( IDebugClient client ) : void
client IDebugClient The client.
Résultat void

Interpret() public méthode

Interprets C# code.
public Interpret ( string arguments ) : void
arguments string The arguments.
Résultat void

InterpretInteractive() public static méthode

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

OpenUI() public méthode

Opens the UI.
public OpenUI ( string arguments ) : void
arguments string The arguments.
Résultat void

ShowInteractiveWindow() public static méthode

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