Class PrivatePropertyDescriptor
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
Name
Private property name.
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
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
Value
The value associated with the private property.
[JsonPropertyName("value")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public RemoteObject? Value { get; set; }