Table of Contents

Class GetUsageAndQuotaCommandResponse

Namespace
OpenQA.Selenium.DevTools.V147.Storage
Assembly
Selenium.WebDriver.dll

Response for Returns usage and quota in bytes.

public sealed class GetUsageAndQuotaCommandResponse : ICommandResponse<GetUsageAndQuotaCommandSettings>, ICommandResponse
Inheritance
GetUsageAndQuotaCommandResponse
Implements
Inherited Members
Extension Methods

Properties

OverrideActive

Whether or not the origin has an active storage quota override

[JsonPropertyName("overrideActive")]
public bool OverrideActive { get; set; }

Property Value

bool

Quota

Storage quota (bytes).

[JsonPropertyName("quota")]
public double Quota { get; set; }

Property Value

double

Usage

Storage usage (bytes).

[JsonPropertyName("usage")]
public double Usage { get; set; }

Property Value

double

UsageBreakdown

Storage usage per type (bytes).

[JsonPropertyName("usageBreakdown")]
public UsageForType[] UsageBreakdown { get; set; }

Property Value

UsageForType[]