Class FrameRequestedNavigationEventArgs
Fired when a renderer-initiated navigation is requested. Navigation may still be cancelled after the event is issued.
public sealed class FrameRequestedNavigationEventArgs : EventArgs
- Inheritance
-
FrameRequestedNavigationEventArgs
- Inherited Members
Properties
Disposition
The disposition for the navigation.
[JsonPropertyName("disposition")]
public ClientNavigationDisposition Disposition { get; set; }
Property Value
FrameId
Id of the frame that is being navigated.
[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 requested navigation.
[JsonPropertyName("url")]
public string Url { get; set; }