Table of Contents

Class GetNavigationHistoryResult

Namespace
Selenium.WebDriver.BiDi.Cdp.Page
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record GetNavigationHistoryResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetNavigationHistoryResult>
Inheritance
EmptyResult
GetNavigationHistoryResult
Implements
IEquatable<EmptyResult>
Inherited Members
EmptyResult.ToString()
EmptyResult.GetHashCode()
EmptyResult.Equals(EmptyResult)
EmptyResult.<Clone>$()
EmptyResult.AdditionalData
EmptyResult.AdditionalMessageData

Constructors

GetNavigationHistoryResult(long, ImmutableArray<NavigationEntry>)

public GetNavigationHistoryResult(long CurrentIndex, ImmutableArray<NavigationEntry> Entries)

Parameters

CurrentIndex long

Index of the current navigation history entry.

Entries ImmutableArray<NavigationEntry>

Array of navigation history entries.

Properties

CurrentIndex

Index of the current navigation history entry.

public long CurrentIndex { get; init; }

Property Value

long

Entries

Array of navigation history entries.

public ImmutableArray<NavigationEntry> Entries { get; init; }

Property Value

ImmutableArray<NavigationEntry>