Class PrefetchStatusUpdatedEventArgs
Fired when a prefetch attempt is updated.
public sealed record PrefetchStatusUpdatedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<PrefetchStatusUpdatedEventArgs>
- Inheritance
-
EventArgsPrefetchStatusUpdatedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
PrefetchStatusUpdatedEventArgs(PreloadingAttemptKey, PreloadPipelineId, FrameId, string, PreloadingStatus, PrefetchStatus, RequestId)
Fired when a prefetch attempt is updated.
public PrefetchStatusUpdatedEventArgs(PreloadingAttemptKey Key, PreloadPipelineId PipelineId, FrameId InitiatingFrameId, string PrefetchUrl, PreloadingStatus Status, PrefetchStatus PrefetchStatus, RequestId RequestId)
Parameters
KeyPreloadingAttemptKeyPipelineIdPreloadPipelineIdInitiatingFrameIdFrameIdThe frame id of the frame initiating prefetch.
PrefetchUrlstringStatusPreloadingStatusPrefetchStatusPrefetchStatusRequestIdRequestId
Properties
InitiatingFrameId
The frame id of the frame initiating prefetch.
public FrameId InitiatingFrameId { get; init; }
Property Value
Key
public PreloadingAttemptKey Key { get; init; }
Property Value
PipelineId
public PreloadPipelineId PipelineId { get; init; }
Property Value
PrefetchStatus
public PrefetchStatus PrefetchStatus { get; init; }
Property Value
PrefetchUrl
public string PrefetchUrl { get; init; }
Property Value
RequestId
public RequestId RequestId { get; init; }
Property Value
Status
public PreloadingStatus Status { get; init; }