Class JsonRpcRequest
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Behaviors.Http.Bindings
Assembly: Cephalon.Behaviors.Http.dll
Represents a JSON-RPC 2.0 request envelope.
public sealed class JsonRpcRequestInheritance
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 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 string (must be “2.0”).
[JsonPropertyName("jsonrpc")]public string? Jsonrpc { get; set; }Property Value
Section titled “Property Value”Method
Section titled “ Method”Gets or sets the method name.
[JsonPropertyName("method")]public string? Method { get; set; }Property Value
Section titled “Property Value”Params
Section titled “ Params”Gets or sets the optional parameters.
[JsonPropertyName("params")]public JsonElement? Params { get; set; }