ScriptEngineEvaluateDocument Method (String) |
Loads and evaluates a script document.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.3
Syntaxpublic Object EvaluateDocument(
string specifier
)
Public Function EvaluateDocument (
specifier As String
) As Object
public:
Object^ EvaluateDocument(
String^ specifier
)
member EvaluateDocument :
specifier : string -> Object
Parameters
- specifier
- Type: SystemString
A string specifying the document to be loaded and evaluated.
Return Value
Type:
ObjectThe 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 script code loaded from the specified document as an expression.
For information about the types of result values that script code can return, see
Evaluate(String, Boolean, String).
See Also