Example #1
0
 public void send_getBuddyLocation(string mid, int index)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("getBuddyLocation", TMessageType.Call, seqid_));
   getBuddyLocation_args args = new getBuddyLocation_args();
   args.Mid = mid;
   args.Index = index;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }
Example #2
0
 public void getBuddyLocation_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getBuddyLocation_args args = new getBuddyLocation_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getBuddyLocation_result result = new getBuddyLocation_result();
   try {
     result.Success = iface_.getBuddyLocation(args.Mid, args.Index);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("getBuddyLocation", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }