ScriptEngineEvaluate(DocumentInfo, String) Method |
Evaluates script code with the specified document meta-information.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public Object Evaluate(
DocumentInfo documentInfo,
string code
)
Public Function Evaluate (
documentInfo As DocumentInfo,
code As String
) As Object
public:
virtual Object^ Evaluate(
DocumentInfo documentInfo,
String^ code
) sealed
abstract Evaluate :
documentInfo : DocumentInfo *
code : string -> Object
override Evaluate :
documentInfo : DocumentInfo *
code : string -> Object
Parameters
- documentInfo DocumentInfo
- A structure containing meta-information for the script document.
- code String
- The script code to evaluate.
Return Value
ObjectThe result value.
Implements
IScriptEngineEvaluate(DocumentInfo, String)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