cxx-frontend
Preparing search index...
JsonRpcRequestMessage
Interface JsonRpcRequestMessage
A JSON-RPC request or notification.
Notifications are the messages without an
id
.
interface
JsonRpcRequestMessage
{
id
?:
JsonRpcId
;
jsonrpc
:
"2.0"
;
method
:
string
;
params
?:
JsonObject
|
JsonArray
;
result
?:
undefined
;
}
Index
Properties
id?
jsonrpc
method
params?
result?
Properties
Optional
id
id
?:
JsonRpcId
jsonrpc
jsonrpc
:
"2.0"
method
method
:
string
Optional
params
params
?:
JsonObject
|
JsonArray
Optional
result
result
?:
undefined
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
id
jsonrpc
method
params
result
cxx-frontend
Loading...
A JSON-RPC request or notification.
Notifications are the messages without an
id.