Esempio n. 1
0
        public Client(Credentials credentials, string proto = PROTO_DEFAULT, string host = HOST_DEFAULT, int port = PORT_DEFAULT)
        {
            this.Host = host;
            this.Port = port;

            _serializer = new JavaScriptSerializer();
            _rest = new RESTadapter(credentials, proto, host, port, _serializer);
        }
Esempio n. 2
0
 internal Queue(RESTadapter rest, string name)
 {
     _rest = rest;
     _name = name;
 }