V8RuntimeCompileDocument Method (String, DocumentCategory, V8CacheKind, Byte, Boolean) |
Loads and compiles a document with the specified category, consuming previously generated cache data.
Namespace:
Microsoft.ClearScript.V8
Assembly:
ClearScript.V8 (in ClearScript.V8.dll) Version: 7.3.1
Syntaxpublic V8Script CompileDocument(
string specifier,
DocumentCategory category,
V8CacheKind cacheKind,
byte[] cacheBytes,
out bool cacheAccepted
)
Public Function CompileDocument (
specifier As String,
category As DocumentCategory,
cacheKind As V8CacheKind,
cacheBytes As Byte(),
<OutAttribute> ByRef cacheAccepted As Boolean
) As V8Script
public:
V8Script^ CompileDocument(
String^ specifier,
DocumentCategory^ category,
V8CacheKind cacheKind,
array<unsigned char>^ cacheBytes,
[OutAttribute] bool% cacheAccepted
)
member CompileDocument :
specifier : string *
category : DocumentCategory *
cacheKind : V8CacheKind *
cacheBytes : byte[] *
cacheAccepted : bool byref -> 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. - cacheKind
- Type: Microsoft.ClearScript.V8V8CacheKind
The kind of cache data to be consumed. - cacheBytes
- Type: SystemByte
Cache data for accelerated compilation. - cacheAccepted
- Type: SystemBoolean
True if cacheBytes was accepted, false otherwise.
Return Value
Type:
V8ScriptA compiled script that can be executed by multiple V8 script engine instances.
Remarks
To be accepted, the cache data must have been generated for identical script code by
the same V8 build.
See Also