Class NavigatedWithinDocumentEventArgs
Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation.
public sealed record NavigatedWithinDocumentEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<NavigatedWithinDocumentEventArgs>
- Inheritance
-
EventArgsNavigatedWithinDocumentEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
NavigatedWithinDocumentEventArgs(FrameId, string, string)
Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation.
public NavigatedWithinDocumentEventArgs(FrameId FrameId, string Url, string NavigationType)
Parameters
Properties
FrameId
Id of the frame.
public FrameId FrameId { get; init; }
Property Value
NavigationType
Navigation type
public string NavigationType { get; init; }
Property Value
Url
Frame's new url.
public string Url { get; init; }