Click or drag to resize

IScriptEngineException Interface

Defines common script engine exception properties.

Namespace:  Microsoft.ClearScript
Assembly:  ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.3
Syntax
public interface IScriptEngineException

The IScriptEngineException type exposes the following members.

Properties
  NameDescription
Public propertyEngineName
Gets the name associated with the script engine instance.
Public propertyErrorDetails
Gets a detailed error message if one is available, null otherwise.
Public propertyExecutionStarted
Gets a value that indicates whether script code execution had started before the current exception was thrown.
Public propertyHResult
Gets an HRESULT error code if one is available, zero otherwise.
Public propertyInnerException
Gets the host exception that caused the current exception to be thrown, or null if one was not specified.
Public propertyIsFatal
Gets a value that indicates whether the exception represents a fatal error.
Public propertyMessage
Gets the error message.
Public propertyScriptException
Gets the script exception that caused the current exception to be thrown, or null if one was not specified.
Top
See Also