Exemplo n.º 1
0
 public ClientReader(APIClient client)
 {
     this.Client = client;
 }
 public ClientIO(APIClient client, Socket socket)
 {
     this.client = client;
     this.socket = socket;
 }
Exemplo n.º 3
0
        private APIClient BuildClient(Socket socket)
        {
            APIClient client = new APIClient(server, socket, ++lastClientId);

            return(client);
        }
 public Request(APIClient client, RequestModel model)
 {
     this.Client = client;
     this.Model  = model;
 }