public void getSettingForMobile_Process(int seqid, TProtocol iprot, TProtocol oprot) { getSettingForMobile_args args = new getSettingForMobile_args(); args.Read(iprot); iprot.ReadMessageEnd(); getSettingForMobile_result result = new getSettingForMobile_result(); try { result.Success = iface_.getSettingForMobile(args.UserId, args.Visibility, args.SettingId, args.Session); } catch (SettingServiceException ex) { result.Ex = ex; } catch (SessionException se) { result.Se = se; } oprot.WriteMessageBegin(new TMessage("getSettingForMobile", TMessageType.Reply, seqid)); result.Write(oprot); oprot.WriteMessageEnd(); oprot.Transport.Flush(); }
public SettingPerson recv_getSettingForMobile() { TMessage msg = iprot_.ReadMessageBegin(); if (msg.Type == TMessageType.Exception) { TApplicationException x = TApplicationException.Read(iprot_); iprot_.ReadMessageEnd(); throw x; } getSettingForMobile_result result = new getSettingForMobile_result(); result.Read(iprot_); iprot_.ReadMessageEnd(); if (result.__isset.success) { return result.Success; } if (result.__isset.ex) { throw result.Ex; } if (result.__isset.se) { throw result.Se; } throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getSettingForMobile failed: unknown result"); }