Class GetNavigationHistoryResult
public sealed record GetNavigationHistoryResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetNavigationHistoryResult>
- Inheritance
-
EmptyResultGetNavigationHistoryResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
GetNavigationHistoryResult(long, ImmutableArray<NavigationEntry>)
public GetNavigationHistoryResult(long CurrentIndex, ImmutableArray<NavigationEntry> Entries)
Parameters
CurrentIndexlongIndex of the current navigation history entry.
EntriesImmutableArray<NavigationEntry>Array of navigation history entries.
Properties
CurrentIndex
Index of the current navigation history entry.
public long CurrentIndex { get; init; }
Property Value
Entries
Array of navigation history entries.
public ImmutableArray<NavigationEntry> Entries { get; init; }