Class CallFrame
- Namespace
- PuppeteerSharp
- Assembly
- PuppeteerSharp.dll
Represents a call frame in a stack trace.
public class CallFrame
- Inheritance
-
CallFrame
Properties
ColumnNumber
Gets or sets the column number in the script (0-based).
public int ColumnNumber { get; set; }
Property Value
FunctionName
Gets or sets the JavaScript function name.
public string FunctionName { get; set; }
Property Value
LineNumber
Gets or sets the line number in the script (0-based).
public int LineNumber { get; set; }
Property Value
ScriptId
Gets or sets the script identifier.
public string ScriptId { get; set; }
Property Value
Url
Gets or sets the URL of the script.
public string Url { get; set; }