Class Initiator
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
TypestringType 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
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
RequestId
Set if another request triggered this request (e.g. preflight).
public RequestId? RequestId { get; init; }
Property Value
Stack
Initiator JavaScript stack trace, set for Script only. Requires the Debugger domain to be enabled.
public StackTrace? Stack { get; init; }
Property Value
Type
Type of this initiator.
public string Type { get; init; }
Property Value
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; }