Click or drag to resize

JsonRpcErrorCode Enumeration

[This is preliminary documentation and is subject to change.]

Error codes, including those who are defined by the JSON-RPC 2.0 specification.

Namespace:  JsonRpc.Messages
Assembly:  JsonRpc.Commons (in JsonRpc.Commons.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntax
public enum JsonRpcErrorCode
Members
  Member nameValueDescription
InternalError-32603 Internal JSON-RPC error. (JSON-RPC)
InvalidParams-32602 Invalid method parameter(s). (JSON-RPC)
InvalidRequest-32600 The JSON sent is not a valid Request object. (JSON-RPC)
MethodNotFound-32601 The method does not exist / is not available. (JSON-RPC)
ParseError-32700 Invalid JSON was received by the server. An error occurred on the server while parsing the JSON text. (JSON-RPC)
UnhandledClrException-32010 There is unhandled CLR exception occurred during the process of request. (JsonRpc.Standard)
Remarks
Error codes in the range -32000~-32029 are reserved for JsonRpc.Standard.
See Also