Class NavigateCommandResponse
Response for Navigates current page to the given URL.
public sealed class NavigateCommandResponse : ICommandResponse<NavigateCommandSettings>, ICommandResponse
- Inheritance
-
NavigateCommandResponse
- Implements
- Inherited Members
- Extension Methods
Properties
ErrorText
User friendly error message, present if and only if navigation has failed.
[JsonPropertyName("errorText")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? ErrorText { get; set; }
Property Value
FrameId
Frame id that has navigated (or failed to navigate)
[JsonPropertyName("frameId")]
public string FrameId { get; set; }
Property Value
IsDownload
Whether the navigation resulted in a download.
[JsonPropertyName("isDownload")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? IsDownload { get; set; }
Property Value
- bool?
LoaderId
Loader identifier. This is omitted in case of same-document navigation, as the previously committed loaderId would not change.
[JsonPropertyName("loaderId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? LoaderId { get; set; }