Class AdFrameData
Ad frame data.
public sealed record AdFrameData : IEquatable<AdFrameData>
- Inheritance
-
AdFrameData
- Implements
- Inherited Members
Constructors
AdFrameData(FrameId, double, double)
Ad frame data.
public AdFrameData(FrameId FrameId, double NetworkBytes, double CpuTime)
Parameters
FrameIdFrameIdThe DevTools frame token.
NetworkBytesdoubleThe network bytes of the frame.
CpuTimedoubleThe CPU time of the frame, in milliseconds.
Properties
CpuTime
The CPU time of the frame, in milliseconds.
public double CpuTime { get; init; }
Property Value
FrameId
The DevTools frame token.
public FrameId FrameId { get; init; }
Property Value
InitialOrigin
The initial origin of the frame. To minimize the payload size, this is only sent once per frame.
public string? InitialOrigin { get; init; }
Property Value
NetworkBytes
The network bytes of the frame.
public double NetworkBytes { get; init; }