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

send_get_count() public method

public send_get_count ( byte key, ColumnParent column_parent, SlicePredicate predicate, ConsistencyLevel consistency_level ) : void
key byte
column_parent ColumnParent
predicate SlicePredicate
consistency_level ConsistencyLevel
return void
      public void send_get_count(byte[] key, ColumnParent column_parent, SlicePredicate predicate, ConsistencyLevel consistency_level)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("get_count", TMessageType.Call, seqid_));
        get_count_args args = new get_count_args();
        args.Key = key;
        args.Column_parent = column_parent;
        args.Predicate = predicate;
        args.Consistency_level = consistency_level;
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }

Same methods

Cassandra.Client::send_get_count ( AsyncCallback callback, object state, byte key, ColumnParent column_parent, SlicePredicate predicate, ConsistencyLevel consistency_level ) : IAsyncResult
Cassandra.Client