Class RpcRequest
Inheritance
System.Object
RpcRequest
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VEDriversLite.DogeAPI
Assembly: VEDriversLite.dll
Syntax
public class RpcRequest
Properties
| Improve this Doc View SourceAdditionalProperties
Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Id
Identifier of RCP caller
Declaration
[JsonProperty("id", Required = Required.Always)]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Jsonrpc
JSON-RPC version
Declaration
[JsonProperty("jsonrpc", Required = Required.Always)]
public string Jsonrpc { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Method
Name of the Neblio RPC method to call
Declaration
[JsonProperty("method", Required = Required.Always)]
public string Method { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Params
Array of string params that should be passed to the RPC method.
Declaration
[JsonProperty("params", Required = Required.Always)]
public ICollection<string> Params { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<System.String> |