Class LoadNetworkResourceCommandSettings
Fetches the resource and returns the content.
public sealed class LoadNetworkResourceCommandSettings : ICommand
- Inheritance
-
LoadNetworkResourceCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
FrameId
Frame id to get the resource for. Mandatory for frame targets, and should be omitted for worker targets.
[JsonPropertyName("frameId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? FrameId { get; set; }
Property Value
Options
Options for the request.
[JsonPropertyName("options")]
public LoadNetworkResourceOptions Options { get; set; }
Property Value
Url
URL of the resource to get content for.
[JsonPropertyName("url")]
public string Url { get; set; }