Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
JsonRpcNotification.cs
3
5{
10 {
15 public JsonRpcNotification(string Method)
16 : base(Method)
17 {
18 }
19
25 public JsonRpcNotification(string Method, params object?[] Parameters)
26 : base(Method, Parameters)
27 {
28 }
29
35 public JsonRpcNotification(string Method, IEnumerable Parameters)
36 : base(Method, Parameters)
37 {
38 }
39
45 public JsonRpcNotification(string Method, Dictionary<string, object> Parameters)
46 : base(Method, Parameters)
47 {
48 }
49
55 public JsonRpcNotification(JsonRpcVersion Version, string Method)
56 : base(Version, Method)
57 {
58 }
59
66 public JsonRpcNotification(JsonRpcVersion Version, string Method, params object?[] Parameters)
67 : base(Version, Method, Parameters)
68 {
69 }
70
77 public JsonRpcNotification(JsonRpcVersion Version, string Method, IEnumerable Parameters)
78 : base(Version, Method, Parameters)
79 {
80 }
81
88 public JsonRpcNotification(JsonRpcVersion Version, string Method, Dictionary<string, object> Parameters)
89 : base(Version, Method, Parameters)
90 {
91 }
92
96 public override bool IsRequest => false;
97 }
98}
Information about a JSON-RPC notification.
JsonRpcNotification(JsonRpcVersion Version, string Method)
Information about a JSON-RPC notification.
override bool IsRequest
If object represents a request.
JsonRpcNotification(string Method)
Information about a JSON-RPC notification.
JsonRpcNotification(JsonRpcVersion Version, string Method, params object?[] Parameters)
Information about a JSON-RPC notification.
JsonRpcNotification(string Method, IEnumerable Parameters)
Information about a JSON-RPC notification.
JsonRpcNotification(JsonRpcVersion Version, string Method, IEnumerable Parameters)
Information about a JSON-RPC notification.
JsonRpcNotification(JsonRpcVersion Version, string Method, Dictionary< string, object > Parameters)
Information about a JSON-RPC notification.
JsonRpcNotification(string Method, Dictionary< string, object > Parameters)
Information about a JSON-RPC notification.
JsonRpcNotification(string Method, params object?[] Parameters)
Information about a JSON-RPC notification.
Information about a JSON-RPC request.
JsonRpcVersion
JSON-RPC version