JsonRPCRequest

Json-Rpc request.

More...

Constructors

this
this()
Undocumented in source.

Members

Functions

hasParams
bool hasParams()
Undocumented in source. Be warned that the author may not have intended to support it.
toJson
Json toJson()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

requestId
TId requestId [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

fromJson
JsonRPCRequest fromJson(Json src)
Undocumented in source. Be warned that the author may not have intended to support it.
fromString
JsonRPCRequest fromString(string src)
Undocumented in source. Be warned that the author may not have intended to support it.
make
JsonRPCRequest!TId make(TId id, string method, T params)
Undocumented in source. Be warned that the author may not have intended to support it.
make
JsonRPCRequest!TId make(TId id, string method)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

id
TId id;
Undocumented in source.
jsonrpc
string jsonrpc;
Undocumented in source.
method
string method;
Undocumented in source.
params
Nullable!Json params;
Undocumented in source.

Detailed Description

Template Params

TId = The type used to identify rpc request.

Meta