Class NavigationEntry
Navigation history entry.
public sealed record NavigationEntry : IEquatable<NavigationEntry>
- Inheritance
-
NavigationEntry
- Implements
- Inherited Members
Constructors
NavigationEntry(long, string, string, string, TransitionType)
Navigation history entry.
public NavigationEntry(long Id, string Url, string UserTypedURL, string Title, TransitionType TransitionType)
Parameters
IdlongUnique id of the navigation history entry.
UrlstringURL of the navigation history entry.
UserTypedURLstringURL that the user typed in the url bar.
TitlestringTitle of the navigation history entry.
TransitionTypeTransitionTypeTransition type.
Properties
Id
Unique id of the navigation history entry.
public long Id { get; init; }
Property Value
Title
Title of the navigation history entry.
public string Title { get; init; }
Property Value
TransitionType
Transition type.
public TransitionType TransitionType { get; init; }
Property Value
Url
URL of the navigation history entry.
public string Url { get; init; }
Property Value
UserTypedURL
URL that the user typed in the url bar.
public string UserTypedURL { get; init; }