Click or drag to resize

V8Exception Class

Version 94.4.20
Class representing a V8 exception.
Inheritance Hierarchy
SystemObject
  CefSharp.RenderProcessV8Exception

Namespace:  CefSharp.RenderProcess
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public class V8Exception

The V8Exception type exposes the following members.

Constructors
  NameDescription
Public methodV8Exception
V8 Exception
Top
Properties
  NameDescription
Public propertyEndColumn
Returns the index within the line of the last character where the error occurred.
Public propertyEndPosition
Returns the index within the script of the last character where the error occurred.
Public propertyLineNumber
Returns the 1-based number of the line where the error occurred or 0 if the line number is unknown.
Public propertyMessage
Returns the exception message.
Public propertyScriptResourceName
Returns the resource name for the script from where the function causing the error originates.
Public propertySourceLine
Returns the line of source code that the exception occurred within.
Public propertyStartColumn
Returns the index within the line of the first character where the error occurred.
Public propertyStartPosition
Returns the index within the script of the first character where the error occurred.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
V8 is Google’s open source high-performance JavaScript and WebAssembly engine.
See Also