Exemplo n.º 1
0
 public RegisterWithSnsIdResult recv_registerWithSnsId()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   registerWithSnsId_result result = new registerWithSnsId_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   if (result.__isset.e) {
     throw result.E;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "registerWithSnsId failed: unknown result");
 }
Exemplo n.º 2
0
 public void registerWithSnsId_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   registerWithSnsId_args args = new registerWithSnsId_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   registerWithSnsId_result result = new registerWithSnsId_result();
   try {
     result.Success = iface_.registerWithSnsId(args.SnsIdType, args.SnsAccessToken, args.Region, args.UdidHash, args.DeviceInfo, args.Mid);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("registerWithSnsId", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }