Class GetPropertiesCommandResponse
Response for Returns properties of a given object. Object group of the result is inherited from the target object.
public sealed class GetPropertiesCommandResponse : ICommandResponse<GetPropertiesCommandSettings>, ICommandResponse
- Inheritance
-
GetPropertiesCommandResponse
- Implements
- Inherited Members
- Extension Methods
Properties
ExceptionDetails
Exception details.
[JsonPropertyName("exceptionDetails")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public ExceptionDetails? ExceptionDetails { get; set; }
Property Value
InternalProperties
Internal object properties (only of the element itself).
[JsonPropertyName("internalProperties")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public InternalPropertyDescriptor[]? InternalProperties { get; set; }
Property Value
PrivateProperties
Object private properties.
[JsonPropertyName("privateProperties")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public PrivatePropertyDescriptor[]? PrivateProperties { get; set; }
Property Value
Result
Object properties.
[JsonPropertyName("result")]
public PropertyDescriptor[] Result { get; set; }