Class ResponseReceivedEventArgs
Fired when HTTP response is available.
public sealed class ResponseReceivedEventArgs : EventArgs
- Inheritance
-
ResponseReceivedEventArgs
- Inherited Members
Properties
FrameId
Frame identifier.
[JsonPropertyName("frameId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? FrameId { get; set; }
Property Value
HasExtraInfo
Indicates whether requestWillBeSentExtraInfo and responseReceivedExtraInfo events will be or were emitted for this request.
[JsonPropertyName("hasExtraInfo")]
public bool HasExtraInfo { get; set; }
Property Value
LoaderId
Loader identifier. Empty string if the request is fetched from worker.
[JsonPropertyName("loaderId")]
public string LoaderId { get; set; }
Property Value
RequestId
Request identifier.
[JsonPropertyName("requestId")]
public string RequestId { get; set; }
Property Value
Response
Response data.
[JsonPropertyName("response")]
public Response Response { get; set; }
Property Value
Timestamp
Timestamp.
[JsonPropertyName("timestamp")]
public double Timestamp { get; set; }
Property Value
Type
Resource type.
[JsonPropertyName("type")]
public ResourceType Type { get; set; }