Click or drag to resize

ScriptEngineEvaluate Method (DocumentInfo, String)

Evaluates script code with the specified document meta-information.

Namespace:  Microsoft.ClearScript
Assembly:  ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.5
Syntax
public Object Evaluate(
	DocumentInfo documentInfo,
	string code
)

Parameters

documentInfo
Type: Microsoft.ClearScriptDocumentInfo
A structure containing meta-information for the script document.
code
Type: SystemString
The script code to evaluate.

Return Value

Type: Object
The result value.
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 an expression.

For information about the types of result values that script code can return, see Evaluate(String, Boolean, String).

See Also