Apache.Cassandra051.Cassandra.Iface.get_string_list_property(string)

Here are the examples of the csharp api class Apache.Cassandra051.Cassandra.Iface.get_string_list_property(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: hectorsharp
Source File: Cassandra.cs
public void get_string_list_property_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        get_string_list_property_args args = new get_string_list_property_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        get_string_list_property_result result = new get_string_list_property_result();
        result.Success = iface_.get_string_list_property(args.Property);
        oprot.WriteMessageBegin(new TMessage("get_string_list_property", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }