Class LifecycleEventEventArgs
Fired for lifecycle events (navigation, load, paint, etc) in the current target (including local frames).
public sealed record LifecycleEventEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<LifecycleEventEventArgs>
- Inheritance
-
EventArgsLifecycleEventEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
LifecycleEventEventArgs(FrameId, LoaderId, string, MonotonicTime)
Fired for lifecycle events (navigation, load, paint, etc) in the current target (including local frames).
public LifecycleEventEventArgs(FrameId FrameId, LoaderId LoaderId, string Name, MonotonicTime Timestamp)
Parameters
FrameIdFrameIdId of the frame.
LoaderIdLoaderIdLoader identifier. Empty string if the request is fetched from worker.
NamestringTimestampMonotonicTime
Properties
FrameId
Id of the frame.
public FrameId FrameId { get; init; }
Property Value
LoaderId
Loader identifier. Empty string if the request is fetched from worker.
public LoaderId LoaderId { get; init; }
Property Value
Name
public string Name { get; init; }
Property Value
Timestamp
public MonotonicTime Timestamp { get; init; }