Table of Contents

Class Initiator

Namespace
Selenium.WebDriver.BiDi.Cdp.Network
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Information about the request initiator.

public sealed record Initiator : IEquatable<Initiator>
Inheritance
Initiator
Implements
Inherited Members

Constructors

Initiator(string)

Information about the request initiator.

public Initiator(string Type)

Parameters

Type string

Type of this initiator.

Properties

ColumnNumber

Initiator column number, set for Parser type or for Script type (when script is importing module) (0-based).

public double? ColumnNumber { get; init; }

Property Value

double?

LineNumber

Initiator line number, set for Parser type or for Script type (when script is importing module) (0-based).

public double? LineNumber { get; init; }

Property Value

double?

RequestId

Set if another request triggered this request (e.g. preflight).

public RequestId? RequestId { get; init; }

Property Value

RequestId

Stack

Initiator JavaScript stack trace, set for Script only. Requires the Debugger domain to be enabled.

public StackTrace? Stack { get; init; }

Property Value

StackTrace

Type

Type of this initiator.

public string Type { get; init; }

Property Value

string

Url

Initiator URL, set for Parser type or for Script type (when script is importing module) or for SignedExchange type.

public string? Url { get; init; }

Property Value

string