Table of Contents

Class PrivatePropertyDescriptor

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

Object private field descriptor.

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

Constructors

PrivatePropertyDescriptor(string)

Object private field descriptor.

public PrivatePropertyDescriptor(string Name)

Parameters

Name string

Private property name.

Properties

Get

A function which serves as a getter for the private property, or undefined if there is no getter (accessor descriptors only).

public RemoteObject? Get { get; init; }

Property Value

RemoteObject

Name

Private property name.

public string Name { get; init; }

Property Value

string

Set

A function which serves as a setter for the private property, or undefined if there is no setter (accessor descriptors only).

public RemoteObject? Set { get; init; }

Property Value

RemoteObject

Value

The value associated with the private property.

public RemoteObject? Value { get; init; }

Property Value

RemoteObject