Table of Contents

Constructor JsonRpcError

Namespace
Sisk.JsonRPC
Assembly
Sisk.JsonRPC.dll

JsonRpcError()

Creates an new instance of the JsonRpcError structure.

public JsonRpcError()

JsonRpcError(int, string)

Creates an new instance of the JsonRpcError structure with given parameters.

public JsonRpcError(int code, string message)

Parameters

code int

The JSON-RPC error code.

message string

The JSON-RPC error message.

JsonRpcError(int, string, JsonValue)

Creates an new instance of the JsonRpcError structure with given parameters.

public JsonRpcError(int code, string message, JsonValue data)

Parameters

code int

The JSON-RPC error code.

message string

The JSON-RPC error message.

data JsonValue

The JSON-RPC error additional data.