Class ResponseReceivedEventArgs
Fired when HTTP response is available.
public sealed record ResponseReceivedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<ResponseReceivedEventArgs>
- Inheritance
-
EventArgsResponseReceivedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
ResponseReceivedEventArgs(RequestId, LoaderId, MonotonicTime, ResourceType, Response, bool, FrameId?)
Fired when HTTP response is available.
public ResponseReceivedEventArgs(RequestId RequestId, LoaderId LoaderId, MonotonicTime Timestamp, ResourceType Type, Response Response, bool HasExtraInfo, FrameId? FrameId = null)
Parameters
RequestIdRequestIdRequest identifier.
LoaderIdLoaderIdLoader identifier. Empty string if the request is fetched from worker.
TimestampMonotonicTimeTimestamp.
TypeResourceTypeResource type.
ResponseResponseResponse data.
HasExtraInfoboolIndicates whether requestWillBeSentExtraInfo and responseReceivedExtraInfo events will be or were emitted for this request.
FrameIdFrameIdFrame identifier.
Properties
FrameId
Frame identifier.
public FrameId? FrameId { get; init; }
Property Value
HasExtraInfo
Indicates whether requestWillBeSentExtraInfo and responseReceivedExtraInfo events will be or were emitted for this request.
public bool HasExtraInfo { get; init; }
Property Value
LoaderId
Loader identifier. Empty string if the request is fetched from worker.
public LoaderId LoaderId { get; init; }
Property Value
RequestId
Request identifier.
public RequestId RequestId { get; init; }
Property Value
Response
Response data.
public Response Response { get; init; }
Property Value
Timestamp
Timestamp.
public MonotonicTime Timestamp { get; init; }
Property Value
Type
Resource type.
public ResourceType Type { get; init; }