Table of Contents

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

int

FunctionName

Gets or sets the JavaScript function name.

public string FunctionName { get; set; }

Property Value

string

LineNumber

Gets or sets the line number in the script (0-based).

public int LineNumber { get; set; }

Property Value

int

ScriptId

Gets or sets the script identifier.

public string ScriptId { get; set; }

Property Value

string

Url

Gets or sets the URL of the script.

public string Url { get; set; }

Property Value

string