Class RequestEntriesCommandSettings
- Namespace
- OpenQA.Selenium.DevTools.V147.CacheStorage
- Assembly
- Selenium.WebDriver.dll
Requests data from cache.
public sealed class RequestEntriesCommandSettings : ICommand
- Inheritance
-
RequestEntriesCommandSettings
- Implements
- Inherited Members
Properties
CacheId
ID of cache to get entries from.
[JsonPropertyName("cacheId")]
public string CacheId { get; set; }
Property Value
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
PageSize
Number of records to fetch.
[JsonPropertyName("pageSize")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? PageSize { get; set; }
Property Value
- long?
PathFilter
If present, only return the entries containing this substring in the path
[JsonPropertyName("pathFilter")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? PathFilter { get; set; }
Property Value
SkipCount
Number of records to skip.
[JsonPropertyName("skipCount")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? SkipCount { get; set; }
Property Value
- long?