Class PrivatePropertyDescriptor
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
NamestringPrivate 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
Name
Private property name.
public string Name { get; init; }
Property Value
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
Value
The value associated with the private property.
public RemoteObject? Value { get; init; }