Class NavigateResult
public sealed record NavigateResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<NavigateResult>
- Inheritance
-
EmptyResultNavigateResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
NavigateResult(FrameId, LoaderId?, string?, bool?)
public NavigateResult(FrameId FrameId, LoaderId? LoaderId, string? ErrorText, bool? IsDownload)
Parameters
FrameIdFrameIdFrame id that has navigated (or failed to navigate)
LoaderIdLoaderIdLoader identifier. This is omitted in case of same-document navigation, as the previously committed loaderId would not change.
ErrorTextstringUser friendly error message, present if and only if navigation has failed.
IsDownloadbool?Whether the navigation resulted in a download.
Properties
ErrorText
User friendly error message, present if and only if navigation has failed.
public string? ErrorText { get; init; }
Property Value
FrameId
Frame id that has navigated (or failed to navigate)
public FrameId FrameId { get; init; }
Property Value
IsDownload
Whether the navigation resulted in a download.
public bool? IsDownload { get; init; }
Property Value
- bool?
LoaderId
Loader identifier. This is omitted in case of same-document navigation, as the previously committed loaderId would not change.
public LoaderId? LoaderId { get; init; }