ScriptEngineExecuteDocument(String, DocumentCategory) Method |
Loads and executes a document with the specified category.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public void ExecuteDocument(
string specifier,
DocumentCategory category
)
Public Sub ExecuteDocument (
specifier As String,
category As DocumentCategory
)
public:
virtual void ExecuteDocument(
String^ specifier,
DocumentCategory^ category
) sealed
abstract ExecuteDocument :
specifier : string *
category : DocumentCategory -> unit
override ExecuteDocument :
specifier : string *
category : DocumentCategory -> unit
Parameters
- specifier String
- A string specifying the document to be loaded and executed.
- category DocumentCategory
- An optional category for the requested document.
Implements
IScriptEngineExecuteDocument(String, DocumentCategory)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