Click or drag to resize

V8ScriptEngineCompileDocument(String, DocumentCategory, V8CacheKind, Byte) Method

Loads and compiles a document with the specified category, generating cache data for accelerated recompilation.

Namespace: Microsoft.ClearScript.V8
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax
public V8Script CompileDocument(
	string specifier,
	DocumentCategory category,
	V8CacheKind cacheKind,
	out byte[] cacheBytes
)

Parameters

specifier  String
A string specifying the document to be loaded and compiled.
category  DocumentCategory
An optional category for the requested document.
cacheKind  V8CacheKind
The kind of cache data to be generated.
cacheBytes  Byte
Cache data for accelerated recompilation.

Return Value

V8Script
A compiled script that can be executed by multiple V8 script engine instances.
Remarks
The generated cache data can be stored externally and is usable in other V8 runtimes and application processes.
See Also