Class FrameAttachedEventArgs
Fired when frame has been attached to its parent.
public sealed record FrameAttachedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<FrameAttachedEventArgs>
- Inheritance
-
EventArgsFrameAttachedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
FrameAttachedEventArgs(FrameId, FrameId, StackTrace?)
Fired when frame has been attached to its parent.
public FrameAttachedEventArgs(FrameId FrameId, FrameId ParentFrameId, StackTrace? Stack = null)
Parameters
FrameIdFrameIdId of the frame that has been attached.
ParentFrameIdFrameIdParent frame identifier.
StackStackTraceJavaScript stack trace of when frame was attached, only set if frame initiated from script.
Properties
FrameId
Id of the frame that has been attached.
public FrameId FrameId { get; init; }
Property Value
ParentFrameId
Parent frame identifier.
public FrameId ParentFrameId { get; init; }
Property Value
Stack
JavaScript stack trace of when frame was attached, only set if frame initiated from script.
public StackTrace? Stack { get; init; }