Table of Contents

Class Initiator

Namespace
PuppeteerSharp
Assembly
PuppeteerSharp.dll

Information about the request initiator.

public class Initiator
Inheritance
Initiator

Properties

ColumnNumber

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

public int? ColumnNumber { get; set; }

Property Value

int?

LineNumber

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

public int? LineNumber { get; set; }

Property Value

int?

RequestId

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

public string RequestId { get; set; }

Property Value

string

Type

Gets or sets the type of the initiator.

public InitiatorType Type { get; set; }

Property Value

InitiatorType

Url

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

public string Url { get; set; }

Property Value

string