public void send_listFunctions() #endif { oprot_.WriteMessageBegin(new TMessage("listFunctions", TMessageType.Call, seqid_)); listFunctions_args args = new listFunctions_args(); args.Write(oprot_); oprot_.WriteMessageEnd(); #if SILVERLIGHT return oprot_.Transport.BeginFlush(callback, state); #else oprot_.Transport.Flush(); #endif }
public void listFunctions_Process(int seqid, TProtocol iprot, TProtocol oprot) { listFunctions_args args = new listFunctions_args(); args.Read(iprot); iprot.ReadMessageEnd(); listFunctions_result result = new listFunctions_result(); result.Success = iface_.listFunctions(); oprot.WriteMessageBegin(new TMessage("listFunctions", TMessageType.Reply, seqid)); result.Write(oprot); oprot.WriteMessageEnd(); oprot.Transport.Flush(); }