Click or drag to resize

V8CacheResult Enumeration

Defines cache data processing results for V8 script compilation.

Namespace: Microsoft.ClearScript.V8
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax
public enum V8CacheResult
Members
Member nameValueDescription
Disabled0 Indicates that cache data processing was disabled because the caller specified V8CacheKind.None.
Accepted1 Indicates that the provided cache data was accepted and used to accelerate script compilation.
Verified2 Indicates that script compilation was bypassed because a suitable compiled script was found in the V8 runtime's memory, but the provided cache data was verified to be correct.
Updated3 Indicates that the provided cache data was updated because it was empty, stale, or invalid.
UpdateFailed4 Indicates that the provided cache data was empty, stale, or invalid, but new cache data could not be generated, and no additional information was provided by the V8 runtime.
See Also