ScriptEngineEvaluateDocument Method (String, DocumentCategory, DocumentContextCallback) |
Loads and evaluates a document with the specified category and context callback.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.1
Syntaxpublic Object EvaluateDocument(
string specifier,
DocumentCategory category,
DocumentContextCallback contextCallback
)
Public Function EvaluateDocument (
specifier As String,
category As DocumentCategory,
contextCallback As DocumentContextCallback
) As Object
public:
Object^ EvaluateDocument(
String^ specifier,
DocumentCategory^ category,
DocumentContextCallback^ contextCallback
)
member EvaluateDocument :
specifier : string *
category : DocumentCategory *
contextCallback : DocumentContextCallback -> Object
Parameters
- specifier
- Type: SystemString
A string specifying the document to be loaded and evaluated. - category
- Type: Microsoft.ClearScriptDocumentCategory
An optional category for the requested document. - contextCallback
- Type: Microsoft.ClearScriptDocumentContextCallback
An optional context callback for the requested document.
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