Example #1
0
 public void send_notifyInstalled(string udidHash, string applicationTypeWithExtensions)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("notifyInstalled", TMessageType.Call, seqid_));
   notifyInstalled_args args = new notifyInstalled_args();
   args.UdidHash = udidHash;
   args.ApplicationTypeWithExtensions = applicationTypeWithExtensions;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }
Example #2
0
 public void notifyInstalled_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   notifyInstalled_args args = new notifyInstalled_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   notifyInstalled_result result = new notifyInstalled_result();
   iface_.notifyInstalled(args.UdidHash, args.ApplicationTypeWithExtensions);
   oprot.WriteMessageBegin(new TMessage("notifyInstalled", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }