Click or drag to resize

V8ScriptEngineExecute(V8Script) Method

Executes a compiled script.

Namespace: Microsoft.ClearScript.V8
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax
public void Execute(
	V8Script script
)

Parameters

script  V8Script
The compiled script to execute.
Remarks
This method is similar to Evaluate(V8Script) with the exception that it does not marshal a result value to the host. It can provide a performance advantage when the result value is not needed.
See Also