Apache.Cassandra.Cassandra.Client.get_indexed_slices C# (CSharp) Méthode

get_indexed_slices() public méthode

Returns the subset of columns specified in SlicePredicate for the rows matching the IndexClause @deprecated use get_range_slices instead with range.row_filter specified
public get_indexed_slices ( ColumnParent column_parent, IndexClause index_clause, SlicePredicate column_predicate, ConsistencyLevel consistency_level ) : List
column_parent ColumnParent
index_clause IndexClause
column_predicate SlicePredicate
consistency_level ConsistencyLevel
Résultat List
      public List<KeySlice> get_indexed_slices(ColumnParent column_parent, IndexClause index_clause, SlicePredicate column_predicate, ConsistencyLevel consistency_level)
      {
        #if !SILVERLIGHT
        send_get_indexed_slices(column_parent, index_clause, column_predicate, consistency_level);
        return recv_get_indexed_slices();

        #else
        var asyncResult = Begin_get_indexed_slices(null, null, column_parent, index_clause, column_predicate, consistency_level);
        return End_get_indexed_slices(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client