Table of Contents

Class GetUsageAndQuotaResult

Namespace
Selenium.WebDriver.BiDi.Cdp.Storage
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record GetUsageAndQuotaResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetUsageAndQuotaResult>
Inheritance
EmptyResult
GetUsageAndQuotaResult
Implements
IEquatable<EmptyResult>
Inherited Members
EmptyResult.ToString()
EmptyResult.GetHashCode()
EmptyResult.Equals(EmptyResult)
EmptyResult.<Clone>$()
EmptyResult.AdditionalData
EmptyResult.AdditionalMessageData

Constructors

GetUsageAndQuotaResult(double, double, bool, ImmutableArray<UsageForType>)

public GetUsageAndQuotaResult(double Usage, double Quota, bool OverrideActive, ImmutableArray<UsageForType> UsageBreakdown)

Parameters

Usage double

Storage usage (bytes).

Quota double

Storage quota (bytes).

OverrideActive bool

Whether or not the origin has an active storage quota override

UsageBreakdown ImmutableArray<UsageForType>

Storage usage per type (bytes).

Properties

OverrideActive

Whether or not the origin has an active storage quota override

public bool OverrideActive { get; init; }

Property Value

bool

Quota

Storage quota (bytes).

public double Quota { get; init; }

Property Value

double

Usage

Storage usage (bytes).

public double Usage { get; init; }

Property Value

double

UsageBreakdown

Storage usage per type (bytes).

public ImmutableArray<UsageForType> UsageBreakdown { get; init; }

Property Value

ImmutableArray<UsageForType>