Click or drag to resize

V8ScriptEngineExecute Method (V8Script)

Executes a compiled script.

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

Parameters

script
Type: Microsoft.ClearScript.V8V8Script
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