Table of Contents

Class ExtensionInfo

Namespace
Selenium.WebDriver.BiDi.Cdp.Extensions
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Detailed information about an extension.

public sealed record ExtensionInfo : IEquatable<ExtensionInfo>
Inheritance
ExtensionInfo
Implements
Inherited Members

Constructors

ExtensionInfo(string, string, string, string, bool)

Detailed information about an extension.

public ExtensionInfo(string Id, string Name, string Version, string Path, bool Enabled)

Parameters

Id string

Extension id.

Name string

Extension name.

Version string

Extension version.

Path string

The path from which the extension was loaded.

Enabled bool

Extension enabled status.

Properties

Enabled

Extension enabled status.

public bool Enabled { get; init; }

Property Value

bool

Id

Extension id.

public string Id { get; init; }

Property Value

string

Name

Extension name.

public string Name { get; init; }

Property Value

string

Path

The path from which the extension was loaded.

public string Path { get; init; }

Property Value

string

Version

Extension version.

public string Version { get; init; }

Property Value

string