ScriptEngineExecute Method (DocumentInfo, String) |
Executes script code with the specified document meta-information.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.1
Syntaxpublic void Execute(
DocumentInfo documentInfo,
string code
)
Public Sub Execute (
documentInfo As DocumentInfo,
code As String
)
public:
void Execute(
DocumentInfo documentInfo,
String^ code
)
member Execute :
documentInfo : DocumentInfo *
code : string -> unit
Parameters
- documentInfo
- Type: Microsoft.ClearScriptDocumentInfo
A structure containing meta-information for the script document. - code
- Type: SystemString
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