Esempio n. 1
0
            public void send_Update(Person person)
            {
                oprot_.WriteMessageBegin(new TMessage("Update", TMessageType.Call, seqid_));
                Update_args args = new Update_args();

                args.Person = person;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                oprot_.Transport.Flush();
            }
Esempio n. 2
0
            public IAsyncResult send_Update(AsyncCallback callback, object state, Person person)
            {
                oprot_.WriteMessageBegin(new TMessage("Update", TMessageType.Call, seqid_));
                Update_args args = new Update_args();

                args.Person = person;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                return(oprot_.Transport.BeginFlush(callback, state));
            }
Esempio n. 3
0
            public void send_Update(List <Zbor> result)
            {
                oprot_.WriteMessageBegin(new TMessage("Update", TMessageType.Call, seqid_));
                Update_args args = new Update_args();

                args.Result = result;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                oprot_.Transport.Flush();
            }
            public void send_Update(List <Trip> res)
      #endif
            {
                oprot_.WriteMessageBegin(new TMessage("Update", TMessageType.Call, seqid_));
                Update_args args = new Update_args();

                args.Res = res;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
        #if SILVERLIGHT
                return(oprot_.Transport.BeginFlush(callback, state));
        #else
                oprot_.Transport.Flush();
        #endif
            }