ScriptEngineExecuteDocument Method (String, DocumentCategory, DocumentContextCallback) |
Loads and executes a document with the specified category and context callback.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.1
Syntaxpublic void ExecuteDocument(
string specifier,
DocumentCategory category,
DocumentContextCallback contextCallback
)
Public Sub ExecuteDocument (
specifier As String,
category As DocumentCategory,
contextCallback As DocumentContextCallback
)
public:
void ExecuteDocument(
String^ specifier,
DocumentCategory^ category,
DocumentContextCallback^ contextCallback
)
member ExecuteDocument :
specifier : string *
category : DocumentCategory *
contextCallback : DocumentContextCallback -> unit
Parameters
- specifier
- Type: SystemString
A string specifying the document to be loaded and executed. - category
- Type: Microsoft.ClearScriptDocumentCategory
An optional category for the requested document. - contextCallback
- Type: Microsoft.ClearScriptDocumentContextCallback
An optional context callback for the requested document.
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 a statement.
See Also