Version 106.0.290 
            V8 Exception
            
 
    Namespace: 
   CefSharp.RenderProcess
    Assembly:
   CefSharp (in CefSharp.dll) Version: 106.0.290.0 (106.0.290.0)
Syntaxpublic 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
 - Type: SystemInt32
index within the line of the last character where the error occurred. - endPosition
 - Type: SystemInt32
index within the script of the last character where the error occurred. - lineNumber
 - Type: SystemInt32
1-based number of the line where the error occurred or 0 if the line number is unknown. - message
 - Type: SystemString
exception message. - scriptResourceName
 - Type: SystemString
resource name for the script from where the function causing the error originates. - sourceLine
 - Type: SystemString
line of source code that the exception occurred within. - startColumn
 - Type: SystemInt32
index within the line of the first character where the error occurred. - startPosition
 - Type: SystemInt32
index within the script of the first character where the error occurred. 
See Also