public void send_getGroup(string groupId) #endif { oprot_.WriteMessageBegin(new TMessage("getGroup", TMessageType.Call, seqid_)); getGroup_args args = new getGroup_args(); args.GroupId = groupId; args.Write(oprot_); oprot_.WriteMessageEnd(); #if SILVERLIGHT return oprot_.Transport.BeginFlush(callback, state); #else oprot_.Transport.Flush(); #endif }
public void getGroup_Process(int seqid, TProtocol iprot, TProtocol oprot) { getGroup_args args = new getGroup_args(); args.Read(iprot); iprot.ReadMessageEnd(); getGroup_result result = new getGroup_result(); try { result.Success = iface_.getGroup(args.GroupId); } catch (TalkException e) { result.E = e; } oprot.WriteMessageBegin(new TMessage("getGroup", TMessageType.Reply, seqid)); result.Write(oprot); oprot.WriteMessageEnd(); oprot.Transport.Flush(); }