public void GetChannelPropertyKeys_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     GetChannelPropertyKeys_args args = new GetChannelPropertyKeys_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     GetChannelPropertyKeys_result result = new GetChannelPropertyKeys_result();
     result.Success = iface_.GetChannelPropertyKeys(args.ChannelID);
     oprot.WriteMessageBegin(new TMessage("GetChannelPropertyKeys", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }
 public void send_GetChannelPropertyKeys(string channelID)
 {
     oprot_.WriteMessageBegin(new TMessage("GetChannelPropertyKeys", TMessageType.Call, seqid_));
     GetChannelPropertyKeys_args args = new GetChannelPropertyKeys_args();
     args.ChannelID = channelID;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }