Click or drag to resize

IScriptEngineExecute(String, String) Method

Executes script code with an associated document name.

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
void Execute(
	string documentName,
	string code
)

Parameters

documentName  String
A document name for the script code. Currently, this name is used only as a label in presentation contexts such as debugger user interfaces.
code  String
The script code to execute.
Remarks

In some script languages the distinction between statements and expressions is significant but ambiguous for certain syntactic elements. This method always interprets the specified script code as a statement.

If a debugger is attached, it will present the specified script code to the user as a document with the specified name. This document will not be discarded after execution.

See Also