Apache.Cassandra.Cassandra.Client.describe_partitioner C# (CSharp) Method

describe_partitioner() public method

returns the partitioner used by this cluster
public describe_partitioner ( ) : string
return string
      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
      }
      #if SILVERLIGHT
Cassandra.Client