Apache.Cassandra.Cassandra.Client.send_describe_partitioner()

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

1 Example 7

1. Example

Project: cassandra-sharp
Source File: Cassandra.cs
public string describe_partitioner()
      {
        #if !SILVERLIGHT
        send_describe_partitioner();
        return recv_describe_partitioner();

        #else
        var asyncResult = Begin_describe_partitioner(null, null, );
        return End_describe_partitioner(asyncResult);

        #endif
      }