 | MessageVersion Property |
[This is preliminary documentation and is subject to change.]
The version of the JSON-RPC specification in use.
Namespace:
JsonRpc.Messages
Assembly:
JsonRpc.Commons (in JsonRpc.Commons.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntax[JsonPropertyAttribute("jsonrpc")]
public string Version { get; set; }
<JsonPropertyAttribute("jsonrpc")>
Public Property Version As String
Get
Set
Dim instance As Message
Dim value As String
value = instance.Version
instance.Version = value
public:
[JsonPropertyAttribute(L"jsonrpc")]
property String^ Version {
String^ get ();
void set (String^ value);
}
[<JsonPropertyAttribute("jsonrpc")>]
member Version : string with get, set
Property Value
Type:
String
Remarks Note |
---|
This property is not used in version 1.0 of the JSON-RPC specification. As of version 2.0, the value should always be "2.0". |
See Also