From 6ad2d27659bc45c58b5178d888c2469597a60daf Mon Sep 17 00:00:00 2001 From: Kai Jan Kriegel Date: Thu, 12 Nov 2020 10:14:41 +0100 Subject: [PATCH] added stub for an InjectableTcpRpcClient creating a TcpClient, performing the Handshake and then injecting the stream into the RpcClient could be a viable workaround to the internal stream of the default RpcClient being inaccessible --- FabAccessAPI/InjectableTcpRpcClient.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FabAccessAPI/InjectableTcpRpcClient.cs b/FabAccessAPI/InjectableTcpRpcClient.cs index 3676431..a004581 100644 --- a/FabAccessAPI/InjectableTcpRpcClient.cs +++ b/FabAccessAPI/InjectableTcpRpcClient.cs @@ -5,6 +5,8 @@ using Capnp.Rpc; namespace FabAccessAPI { class InjectableTcpRpcClient : TcpRpcClient { - + public InjectableTcpRpcClient() { + throw new NotImplementedException(); + } } }