V8RuntimeCompileDocument Method (String, DocumentCategory, DocumentContextCallback) |
Loads and compiles a document with the specified category and context callback.
Namespace:
Microsoft.ClearScript.V8
Assembly:
ClearScript.V8 (in ClearScript.V8.dll) Version: 7.2.4
Syntaxpublic V8Script CompileDocument(
string specifier,
DocumentCategory category,
DocumentContextCallback contextCallback
)
Public Function CompileDocument (
specifier As String,
category As DocumentCategory,
contextCallback As DocumentContextCallback
) As V8Script
public:
V8Script^ CompileDocument(
String^ specifier,
DocumentCategory^ category,
DocumentContextCallback^ contextCallback
)
member CompileDocument :
specifier : string *
category : DocumentCategory *
contextCallback : DocumentContextCallback -> V8Script
Parameters
- specifier
- Type: SystemString
A string specifying the document to be loaded and compiled. - 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:
V8ScriptA compiled script that can be executed by multiple V8 script engine instances.
See Also