forked from modelcontextprotocol/csharp-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonRpcResponse.cs
More file actions
29 lines (27 loc) · 1021 Bytes
/
JsonRpcResponse.cs
File metadata and controls
29 lines (27 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System.Text.Json.Nodes;
using System.Text.Json.Serialization;
namespace ModelContextProtocol.Protocol;
/// <summary>
/// A successful response message in the JSON-RPC protocol.
/// </summary>
/// <remarks>
/// <para>
/// Response messages are sent in reply to a request message and contain the result of the method execution.
/// Each response includes the same ID as the original request, allowing the sender to match responses
/// with their corresponding requests.
/// </para>
/// <para>
/// This class represents a successful response with a result. For error responses, see <see cref="JsonRpcError"/>.
/// </para>
/// </remarks>
public class JsonRpcResponse : JsonRpcMessageWithId
{
/// <summary>
/// Gets the result of the method invocation.
/// </summary>
/// <remarks>
/// This property contains the result data returned by the server in response to the JSON-RPC method request.
/// </remarks>
[JsonPropertyName("result")]
public required JsonNode? Result { get; init; }
}