Class RequestCacheNamesCommandSettings
- Namespace
- OpenQA.Selenium.DevTools.V147.CacheStorage
- Assembly
- Selenium.WebDriver.dll
Requests cache names.
public sealed class RequestCacheNamesCommandSettings : ICommand
- Inheritance
-
RequestCacheNamesCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
SecurityOrigin
At least and at most one of securityOrigin, storageKey, storageBucket must be specified. Security origin.
[JsonPropertyName("securityOrigin")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? SecurityOrigin { get; set; }
Property Value
StorageBucket
Storage bucket. If not specified, it uses the default bucket.
[JsonPropertyName("storageBucket")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StorageBucket? StorageBucket { get; set; }
Property Value
StorageKey
Storage key.
[JsonPropertyName("storageKey")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? StorageKey { get; set; }