borepin/FabAccessAPI/InjectableTcpRpcClient.cs
Kai Jan Kriegel 6ad2d27659 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
2020-11-12 10:14:41 +01:00

13 lines
272 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Capnp.Rpc;
namespace FabAccessAPI {
class InjectableTcpRpcClient : TcpRpcClient {
public InjectableTcpRpcClient() {
throw new NotImplementedException();
}
}
}