Class JsonRpcErrorResponse
Namespace: Cephalon.Behaviors.Http.Bindings
Assembly: Cephalon.Behaviors.Http.dll
Represents an error JSON-RPC 2.0 response envelope.
public sealed class JsonRpcErrorResponseInheritance
Section titled “Inheritance”Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Properties
Section titled “Properties”Gets or sets the error object.
[JsonPropertyName("error")]public JsonRpcError Error { get; set; }Property Value
Section titled “Property Value”Gets or sets the echoed request identifier (null for parse errors).
[JsonPropertyName("id")]public JsonElement? Id { get; set; }Property Value
Section titled “Property Value”Jsonrpc
Section titled “ Jsonrpc”Gets or sets the JSON-RPC version (always “2.0”).
[JsonPropertyName("jsonrpc")]public string Jsonrpc { get; set; }