Class FrameStartedNavigatingEventArgs
Fired when a navigation starts. This event is fired for both
renderer-initiated and browser-initiated navigations. For renderer-initiated
navigations, the event is fired after frameRequestedNavigation.
Navigation may still be cancelled after the event is issued. Multiple events
can be fired for a single navigation, for example, when a same-document
navigation becomes a cross-document navigation (such as in the case of a
frameset).
public sealed class FrameStartedNavigatingEventArgs : EventArgs
- Inheritance
-
FrameStartedNavigatingEventArgs
- Inherited Members
Properties
FrameId
ID of the frame that is being navigated.
[JsonPropertyName("frameId")]
public string FrameId { get; set; }
Property Value
LoaderId
Loader identifier. Even though it is present in case of same-document navigation, the previously committed loaderId would not change unless the navigation changes from a same-document to a cross-document navigation.
[JsonPropertyName("loaderId")]
public string LoaderId { get; set; }
Property Value
NavigationType
Gets or sets the navigationType
[JsonPropertyName("navigationType")]
public string NavigationType { get; set; }
Property Value
Url
The URL the navigation started with. The final URL can be different.
[JsonPropertyName("url")]
public string Url { get; set; }