Exemple #1
0
            public void send_getEvents(string input, string doctate, Session session)
      #endif
            {
                oprot_.WriteMessageBegin(new TMessage("getEvents", TMessageType.Call, seqid_));
                getEvents_args args = new getEvents_args();

                args.Input   = input;
                args.Doctate = doctate;
                args.Session = session;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
        #if SILVERLIGHT
                return(oprot_.Transport.BeginFlush(callback, state));
        #else
                oprot_.Transport.Flush();
        #endif
            }
Exemple #2
0
            public void getEvents_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                getEvents_args args = new getEvents_args();

                args.Read(iprot);
                iprot.ReadMessageEnd();
                getEvents_result result = new getEvents_result();

                try {
                    result.Success = iface_.getEvents(args.Input, args.Doctate, args.Session);
                } catch (NlpException ex) {
                    result.Ex = ex;
                } catch (SessionException se) {
                    result.Se = se;
                }
                oprot.WriteMessageBegin(new TMessage("getEvents", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }
 public void getEvents_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getEvents_args args = new getEvents_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getEvents_result result = new getEvents_result();
   try {
     result.Success = iface_.getEvents(args.Input, args.Doctate, args.Session);
   } catch (NlpException ex) {
     result.Ex = ex;
   } catch (SessionException se) {
     result.Se = se;
   }
   oprot.WriteMessageBegin(new TMessage("getEvents", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
 public void send_getEvents(string input, string doctate, Session session)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("getEvents", TMessageType.Call, seqid_));
   getEvents_args args = new getEvents_args();
   args.Input = input;
   args.Doctate = doctate;
   args.Session = session;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }