Table of Contents

Class GetMetadataCommandSettings

Namespace
OpenQA.Selenium.DevTools.V148.IndexedDB
Assembly
Selenium.WebDriver.dll

Gets metadata of an object store.

public sealed class GetMetadataCommandSettings : ICommand
Inheritance
GetMetadataCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

DatabaseName

Database name.

[JsonPropertyName("databaseName")]
public string DatabaseName { get; set; }

Property Value

string

ObjectStoreName

Object store name.

[JsonPropertyName("objectStoreName")]
public string ObjectStoreName { get; set; }

Property Value

string

SecurityOrigin

At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.

[JsonPropertyName("securityOrigin")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? SecurityOrigin { get; set; }

Property Value

string

StorageBucket

Storage bucket. If not specified, it uses the default bucket.

[JsonPropertyName("storageBucket")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StorageBucket? StorageBucket { get; set; }

Property Value

StorageBucket

StorageKey

Storage key.

[JsonPropertyName("storageKey")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? StorageKey { get; set; }

Property Value

string