public void getDetection_Process(int seqid, TProtocol iprot, TProtocol oprot) { getDetection_args args = new getDetection_args(); args.Read(iprot); iprot.ReadMessageEnd(); getDetection_result result = new getDetection_result(); try { result.Success = iface_.getDetection(args.El, args.Session); } catch (ElifException ex) { result.Ex = ex; } catch (SessionException se) { result.Se = se; } oprot.WriteMessageBegin(new TMessage("getDetection", TMessageType.Reply, seqid)); result.Write(oprot); oprot.WriteMessageEnd(); oprot.Transport.Flush(); }
public List<ElifImageDetection> recv_getDetection() { TMessage msg = iprot_.ReadMessageBegin(); if (msg.Type == TMessageType.Exception) { TApplicationException x = TApplicationException.Read(iprot_); iprot_.ReadMessageEnd(); throw x; } getDetection_result result = new getDetection_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, "getDetection failed: unknown result"); }