Version 118.6.80 
            V8 Exception
            
 
    Namespace: 
   CefSharp.RenderProcess
    Assembly:
   CefSharp (in CefSharp.dll) Version: 118.6.80.0 (118.6.80.0)
 Syntax
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
See Also