public void getOfflinePlayer_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getOfflinePlayer_args args = new getOfflinePlayer_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getOfflinePlayer_result result = new getOfflinePlayer_result();
   try {
     result.Success = iface_.getOfflinePlayer(args.AuthString, args.Name);
   } catch (org.phybros.thrift.EAuthException aex) {
     result.Aex = aex;
   } catch (org.phybros.thrift.EDataException dex) {
     result.Dex = dex;
   }
   oprot.WriteMessageBegin(new TMessage("getOfflinePlayer", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
 public void send_getOfflinePlayer(string authString, string name)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("getOfflinePlayer", TMessageType.Call, seqid_));
   getOfflinePlayer_args args = new getOfflinePlayer_args();
   args.AuthString = authString;
   args.Name = name;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }