IScriptEngineExecute(DocumentInfo, String) Method |
Executes script code with the specified document meta-information.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax void Execute(
DocumentInfo documentInfo,
string code
)
Sub Execute (
documentInfo As DocumentInfo,
code As String
)
void Execute(
DocumentInfo documentInfo,
String^ code
)
abstract Execute :
documentInfo : DocumentInfo *
code : string -> unit
Parameters
- documentInfo DocumentInfo
- A structure containing meta-information for the script document.
- 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.
See Also