Ejemplo n.º 1
0
 public SystemRpcClient(JsonRpcClient jsonRpcClient, DelugeRpcClient delugeRpcClient)
     : base(jsonRpcClient, delugeRpcClient)
 {
 }
Ejemplo n.º 2
0
 public AuthRpcClient(JsonRpcClient jsonRpcClient, DelugeRpcClient delugeRpcClient)
     : base(jsonRpcClient, delugeRpcClient)
 {
 }
 public void TearDown()
 {
     this.Client = null;
 }
Ejemplo n.º 4
0
 protected ClientBase(JsonRpcClient jsonRpcClient, DelugeRpcClient delugeRpcClient)
 {
     this.DelugeRpcClient = delugeRpcClient;
     this.JsonRpcClient = jsonRpcClient;
 }
 public void Setup()
 {
     this.Client = new DelugeRpcClient();
 }