Class FrameScheduledNavigationEventArgs
Fired when frame schedules a potential navigation.
public sealed class FrameScheduledNavigationEventArgs : EventArgs
- Inheritance
-
FrameScheduledNavigationEventArgs
- Inherited Members
Properties
Delay
Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start.
[JsonPropertyName("delay")]
public double Delay { get; set; }
Property Value
FrameId
Id of the frame that has scheduled a navigation.
[JsonPropertyName("frameId")]
public string FrameId { get; set; }
Property Value
Reason
The reason for the navigation.
[JsonPropertyName("reason")]
public ClientNavigationReason Reason { get; set; }
Property Value
Url
The destination URL for the scheduled navigation.
[JsonPropertyName("url")]
public string Url { get; set; }