Click or drag to resize

V8RuntimeCompile Method (String, String, V8CacheKind, Byte)

Creates a compiled script with an associated document name, generating cache data for accelerated recompilation.

Namespace:  Microsoft.ClearScript.V8
Assembly:  ClearScript.V8 (in ClearScript.V8.dll) Version: 7.3.1
Syntax
public V8Script Compile(
	string documentName,
	string code,
	V8CacheKind cacheKind,
	out byte[] cacheBytes
)

Parameters

documentName
Type: SystemString
A document name for the compiled script. Currently this name is used only as a label in presentation contexts such as debugger user interfaces.
code
Type: SystemString
The script code to compile.
cacheKind
Type: Microsoft.ClearScript.V8V8CacheKind
The kind of cache data to be generated.
cacheBytes
Type: SystemByte
Cache data for accelerated recompilation.

Return Value

Type: 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