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

send_execute_prepared_cql3_query() public method

public send_execute_prepared_cql3_query ( int itemId, List values, ConsistencyLevel consistency ) : void
itemId int
values List
consistency ConsistencyLevel
return void
      public void send_execute_prepared_cql3_query(int itemId, List<byte[]> values, ConsistencyLevel consistency)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("execute_prepared_cql3_query", TMessageType.Call, seqid_));
        execute_prepared_cql3_query_args args = new execute_prepared_cql3_query_args();
        args.ItemId = itemId;
        args.Values = values;
        args.Consistency = consistency;
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }

Same methods

Cassandra.Client::send_execute_prepared_cql3_query ( AsyncCallback callback, object state, int itemId, List values, ConsistencyLevel consistency ) : IAsyncResult
Cassandra.Client