IScriptEngineEvaluateDocument(String, DocumentCategory, DocumentContextCallback) Method |
Loads and evaluates a document with the specified category and context callback.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax Object EvaluateDocument(
string specifier,
DocumentCategory category,
DocumentContextCallback contextCallback
)
Function EvaluateDocument (
specifier As String,
category As DocumentCategory,
contextCallback As DocumentContextCallback
) As Object
Object^ EvaluateDocument(
String^ specifier,
DocumentCategory^ category,
DocumentContextCallback^ contextCallback
)
abstract EvaluateDocument :
specifier : string *
category : DocumentCategory *
contextCallback : DocumentContextCallback -> Object
Parameters
- specifier String
- A string specifying the document to be loaded and evaluated.
- category DocumentCategory
- An optional category for the requested document.
- contextCallback DocumentContextCallback
- An optional context callback for the requested document.
Return Value
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