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

multiget_count() public method

Perform a get_count in parallel on the given list keys. The return value maps keys to the count found.
public multiget_count ( List keys, ColumnParent column_parent, SlicePredicate predicate, ConsistencyLevel consistency_level ) : int>.Dictionary
keys List
column_parent ColumnParent
predicate SlicePredicate
consistency_level ConsistencyLevel
return int>.Dictionary
      public Dictionary<byte[], int> multiget_count(List<byte[]> keys, ColumnParent column_parent, SlicePredicate predicate, ConsistencyLevel consistency_level)
      {
        #if !SILVERLIGHT
        send_multiget_count(keys, column_parent, predicate, consistency_level);
        return recv_multiget_count();

        #else
        var asyncResult = Begin_multiget_count(null, null, keys, column_parent, predicate, consistency_level);
        return End_multiget_count(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client