Table of Contents

Class PrivatePropertyDescriptor

Namespace
OpenQA.Selenium.DevTools.V146.Runtime
Assembly
Selenium.WebDriver.dll

Object private field descriptor.

public sealed class PrivatePropertyDescriptor
Inheritance
PrivatePropertyDescriptor
Inherited Members

Properties

Get

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

[JsonPropertyName("get")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public RemoteObject? Get { get; set; }

Property Value

RemoteObject

Name

Private property name.

[JsonPropertyName("name")]
public string Name { get; set; }

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).

[JsonPropertyName("set")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public RemoteObject? Set { get; set; }

Property Value

RemoteObject

Value

The value associated with the private property.

[JsonPropertyName("value")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public RemoteObject? Value { get; set; }

Property Value

RemoteObject