Class FrameAttachedEventArgs
Fired when frame has been attached to its parent.
public sealed class FrameAttachedEventArgs : EventArgs
- Inheritance
-
FrameAttachedEventArgs
- Inherited Members
Properties
FrameId
Id of the frame that has been attached.
[JsonPropertyName("frameId")]
public string FrameId { get; set; }
Property Value
ParentFrameId
Parent frame identifier.
[JsonPropertyName("parentFrameId")]
public string ParentFrameId { get; set; }
Property Value
Stack
JavaScript stack trace of when frame was attached, only set if frame initiated from script.
[JsonPropertyName("stack")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTrace? Stack { get; set; }