 | 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; }
<JsonPropertyAttribute("result", NullValueHandling := NullValueHandling.Ignore)>
Public Property Result As JToken
Get
Set
Dim instance As ResponseMessage
Dim value As JToken
value = instance.Result
instance.Result = value
public:
[JsonPropertyAttribute(L"result", NullValueHandling = NullValueHandling::Ignore)]
property JToken^ Result {
JToken^ get ();
void set (JToken^ value);
}
[<JsonPropertyAttribute("result", NullValueHandling = NullValueHandling.Ignore)>]
member Result : JToken with 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