예제 #1
0
 public void upsertContacts_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   upsertContacts_args args = new upsertContacts_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   upsertContacts_result result = new upsertContacts_result();
   try {
     result.Success = iface_.upsertContacts(args.UserContactDetails, args.Session);
   } catch (UserException ex) {
     result.Ex = ex;
   } catch (SessionException se) {
     result.Se = se;
   }
   oprot.WriteMessageBegin(new TMessage("upsertContacts", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
예제 #2
0
 public void send_upsertContacts(UserContactDetails userContactDetails, Session session)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("upsertContacts", TMessageType.Call, seqid_));
   upsertContacts_args args = new upsertContacts_args();
   args.UserContactDetails = userContactDetails;
   args.Session = session;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }