Class Initiator
Information about the request initiator.
public sealed class Initiator
- Inheritance
-
Initiator
- Inherited Members
Properties
ColumnNumber
Initiator column number, set for Parser type or for Script type (when script is importing module) (0-based).
[JsonPropertyName("columnNumber")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? ColumnNumber { get; set; }
Property Value
LineNumber
Initiator line number, set for Parser type or for Script type (when script is importing module) (0-based).
[JsonPropertyName("lineNumber")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? LineNumber { get; set; }
Property Value
RequestId
Set if another request triggered this request (e.g. preflight).
[JsonPropertyName("requestId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? RequestId { get; set; }
Property Value
Stack
Initiator JavaScript stack trace, set for Script only. Requires the Debugger domain to be enabled.
[JsonPropertyName("stack")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTrace? Stack { get; set; }
Property Value
Type
Type of this initiator.
[JsonPropertyName("type")]
public InitiatorTypeValues Type { get; set; }
Property Value
Url
Initiator URL, set for Parser type or for Script type (when script is importing module) or for SignedExchange type.
[JsonPropertyName("url")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Url { get; set; }