Table of Contents

Class GetHistogramsCommandSettings

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

Get Chrome histograms.

public sealed class GetHistogramsCommandSettings : ICommand
Inheritance
GetHistogramsCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

Delta

If true, retrieve delta since last delta call.

[JsonPropertyName("delta")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? Delta { get; set; }

Property Value

bool?

Query

Requested substring in name. Only histograms which have query as a substring in their name are extracted. An empty or absent query returns all histograms.

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

Property Value

string