From b08ff28b94790babcbe4024292c162b1784d7638 Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Tue, 12 Nov 2024 03:46:18 -0800 Subject: [PATCH] Update `HttpClientMessageHandler.cs` reference Signed-off-by: Emmanuel Ferdman --- doc/extensibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/extensibility.md b/doc/extensibility.md index ddee3847..19499016 100644 --- a/doc/extensibility.md +++ b/doc/extensibility.md @@ -55,7 +55,7 @@ StreamJsonRpc includes a few `IJsonRpcMessageHandler` implementations: message. 1. `HttpClientMessageHandler` - This is a client-side implementation of the [JSON-RPC over HTTP spec](https://www.jsonrpc.org/historical/json-rpc-over-http.html), delivered as - [a sample included in our test project](../src/StreamJsonRpc.Tests/Samples/HttpClientMessageHandler.cs). + [a sample included in our test project](../test/StreamJsonRpc.Tests/Samples/HttpClientMessageHandler.cs). Some of the constructors on the `JsonRpc` class accept an object that implements the `IJsonRpcMessageHandler` interface, allowing you to select any of the built-in behaviors listed above, or define this part of the protocol yourself.