Click or drag to resize

V8Exception Class

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

Namespace: CefSharp.RenderProcess
Assembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.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 methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns 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