V8CacheResult Enumeration |
Defines cache data processing results for V8 script compilation.
Namespace: Microsoft.ClearScript.V8Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax public enum V8CacheResult
Public Enumeration V8CacheResult
public enum class V8CacheResult
Members Member name | Value | Description |
---|
Disabled | 0 |
Indicates that cache data processing was disabled because the caller specified
V8CacheKind.None.
|
Accepted | 1 |
Indicates that the provided cache data was accepted and used to accelerate script
compilation.
|
Verified | 2 |
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.
|
Updated | 3 |
Indicates that the provided cache data was updated because it was empty, stale, or
invalid.
|
UpdateFailed | 4 |
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