Class NavigateCommandSettings
Navigates current page to the given URL.
public sealed class NavigateCommandSettings : ICommand
- Inheritance
-
NavigateCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
FrameId
Frame id to navigate, if not specified navigates the top frame.
[JsonPropertyName("frameId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? FrameId { get; set; }
Property Value
Referrer
Referrer URL.
[JsonPropertyName("referrer")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Referrer { get; set; }
Property Value
ReferrerPolicy
Referrer-policy used for the navigation.
[JsonPropertyName("referrerPolicy")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public ReferrerPolicy? ReferrerPolicy { get; set; }
Property Value
TransitionType
Intended transition type.
[JsonPropertyName("transitionType")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public TransitionType? TransitionType { get; set; }
Property Value
Url
URL to navigate the page to.
[JsonPropertyName("url")]
public string Url { get; set; }