Esempio n. 1
0
        public string TestSendHttpSearch(TTransport Transport, string param1, string param2)
        {
            ObjClient = GetThriftClientObject(Transport);
            string result = ObjClient.TestSendHttpResearch(param1, param2);

            return(result);
        }
Esempio n. 2
0
 public ThriftResearchAPI.Client GetThriftClientObject(TTransport Transport)
 {
     Protocol  = new TBinaryProtocol(Transport);
     ObjClient = new ThriftResearchAPI.Client(Protocol);
     Transport.Open();
     return(ObjClient);
 }