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

remove() public method

Remove data from the row specified by key at the granularity specified by column_path, and the given timestamp. Note that all the values in column_path besides column_path.column_family are truly optional: you can remove the entire row by just specifying the ColumnFamily, or you can remove a SuperColumn or a single Column by specifying those levels too.
public remove ( byte key, ColumnPath column_path, long timestamp, ConsistencyLevel consistency_level ) : void
key byte
column_path ColumnPath
timestamp long
consistency_level ConsistencyLevel
return void
      public void remove(byte[] key, ColumnPath column_path, long timestamp, ConsistencyLevel consistency_level)
      {
        #if !SILVERLIGHT
        send_remove(key, column_path, timestamp, consistency_level);
        recv_remove();

        #else
        var asyncResult = Begin_remove(null, null, key, column_path, timestamp, consistency_level);
        End_remove(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client