public void send_testCase3()
            {
                oprot_.WriteMessageBegin(new TMessage("testCase3", TMessageType.Call, seqid_));
                testCase3_args args = new testCase3_args();

                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                oprot_.Transport.Flush();
            }
            public void testCase3_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                testCase3_args args = new testCase3_args();

                args.Read(iprot);
                iprot.ReadMessageEnd();
                testCase3_result result = new testCase3_result();

                iface_.testCase3();
                oprot.WriteMessageBegin(new TMessage("testCase3", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }
Example #3
0
        public void send_testCase3()
    #endif
        {
            oprot_.WriteMessageBegin(new TMessage("testCase3", TMessageType.Call, seqid_));
            testCase3_args args = new testCase3_args();

            args.Write(oprot_);
            oprot_.WriteMessageEnd();
      #if SILVERLIGHT
            return(oprot_.Transport.BeginFlush(callback, state));
      #else
            oprot_.Transport.Flush();
      #endif
        }
 public void testCase3_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     testCase3_args args = new testCase3_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     testCase3_result result = new testCase3_result();
     iface_.testCase3();
     oprot.WriteMessageBegin(new TMessage("testCase3", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }
 public void send_testCase3()
 {
     oprot_.WriteMessageBegin(new TMessage("testCase3", TMessageType.Call, seqid_));
     testCase3_args args = new testCase3_args();
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }