Version 130.1.90
V8 Exception
Namespace: CefSharp.RenderProcessAssembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax public V8Exception(
int endColumn,
int endPosition,
int lineNumber,
string message,
string scriptResourceName,
string sourceLine,
int startColumn,
int startPosition
)
public:
V8Exception(
int endColumn,
int endPosition,
int lineNumber,
String^ message,
String^ scriptResourceName,
String^ sourceLine,
int startColumn,
int startPosition
)
Parameters
- endColumn Int32
- index within the line of the last character where the error occurred.
- endPosition Int32
- index within the script of the last character where the error occurred.
- lineNumber Int32
- 1-based number of the line where the error occurred or 0 if the line number is unknown.
- message String
- exception message.
- scriptResourceName String
- resource name for the script from where the function causing the error originates.
- sourceLine String
- line of source code that the exception occurred within.
- startColumn Int32
- index within the line of the first character where the error occurred.
- startPosition Int32
- index within the script of the first character where the error occurred.
See Also