Click or drag to resize

ResponseMessageResult Property

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

An object representing the result of processing the request.

Namespace:  JsonRpc.Messages
Assembly:  JsonRpc.Commons (in JsonRpc.Commons.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntax
[JsonPropertyAttribute("result", NullValueHandling = NullValueHandling.Ignore)]
public JToken Result { get; set; }

Property Value

Type: JToken
Remarks
To compose a valid JSON RPC response, you need to set this property to the value returned by CreateNull, if the response is success and no other value is to be offered.
See Also