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

Begin_remove() public method

public Begin_remove ( AsyncCallback callback, object state, byte key, ColumnPath column_path, long timestamp, ConsistencyLevel consistency_level ) : IAsyncResult
callback AsyncCallback
state object
key byte
column_path ColumnPath
timestamp long
consistency_level ConsistencyLevel
return IAsyncResult
      public IAsyncResult Begin_remove(AsyncCallback callback, object state, byte[] key, ColumnPath column_path, long timestamp, ConsistencyLevel consistency_level)
      {
        return send_remove(callback, state, key, column_path, timestamp, consistency_level);
      }
Cassandra.Client