Click or drag to resize

ScriptEngineDispose(Boolean) Method

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

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
protected virtual 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