public void getFriendsListForMobile_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getFriendsListForMobile_args args = new getFriendsListForMobile_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getFriendsListForMobile_result result = new getFriendsListForMobile_result();
   try {
     result.Success = iface_.getFriendsListForMobile(args.UserId, args.DeviceId, args.CTag, args.Session);
   } catch (UserException ex) {
     result.Ex = ex;
   } catch (SessionException se) {
     result.Se = se;
   }
   oprot.WriteMessageBegin(new TMessage("getFriendsListForMobile", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
 public void send_getFriendsListForMobile(int userId, string deviceId, string cTag, Session session)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("getFriendsListForMobile", TMessageType.Call, seqid_));
   getFriendsListForMobile_args args = new getFriendsListForMobile_args();
   args.UserId = userId;
   args.DeviceId = deviceId;
   args.CTag = cTag;
   args.Session = session;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }