Click or drag to resize

WindowsScriptEngine.Dispose(Boolean) Method

Releases the unmanaged resources used by the script engine and optionally releases the managed resources.

Namespace: Microsoft.ClearScript.Windows.Core
Assembly: ClearScript.Windows.Core (in ClearScript.Windows.Core.dll) Version: 7.5.0
Syntax
protected override void Dispose(
	bool disposing
)

Parameters

disposing  Boolean
True to release both managed and unmanaged resources; false to release only unmanaged resources.
Remarks
This method is called by the public Dispose() method and the Finalize method. Dispose() invokes the protected Dispose(Boolean) method with the disposing parameter set to true. Finalize invokes Dispose(Boolean) with disposing set to false.
See Also