Interface IJsonRpcResponse<TResult>
Base interface for JSON-RPC responses.
Assembly: XploRe.Net.JsonRpc.dll
Syntax
public interface IJsonRpcResponse<out TResult> : IJsonRpcMessage, IHasProtocolVersion
Type Parameters
Properties
Name |
Description |
Error
|
Set to the JsonRpcError instance if an error occured during the JSON-RPC request. If the
request succeeded, this property is null .
|
Result
|
The arbitrary JSON-RPC result object. May be null . If an error occurred, this property is always
null .
|
Extension Methods