Generated by DocFX

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.NeblioAPI
Assembly: VEDriversLite.NeblioAPI.dll
Syntax
public class RpcRequest

Properties

| Improve this Doc View Source

AdditionalProperties

Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>
| Improve this Doc View Source

Id

Identifier of RCP caller

Declaration
[JsonProperty("id", Required = Required.Always)]
public string Id { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Jsonrpc

JSON-RPC version

Declaration
[JsonProperty("jsonrpc", Required = Required.Always)]
public string Jsonrpc { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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
| Improve this Doc View Source

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>