Class JsonRpcSuccessResponse
Namespace: Cephalon.Behaviors.Http.Bindings
Assembly: Cephalon.Behaviors.Http.dll
Represents a successful JSON-RPC 2.0 response envelope.
public sealed class JsonRpcSuccessResponseInheritance
Section titled “Inheritance”object ← JsonRpcSuccessResponse
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 echoed request identifier.
[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; }Property Value
Section titled “Property Value”Result
Section titled “ Result”Gets or sets the result payload.
[JsonPropertyName("result")]public object? Result { get; set; }