FluentCassandra.Apache.Cassandra.Cassandra.execute_cql3_query_args.Write(TProtocol)

Here are the examples of the csharp api class FluentCassandra.Apache.Cassandra.Cassandra.execute_cql3_query_args.Write(TProtocol) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: fluentcassandra
Source File: Cassandra.cs
public void send_execute_cql3_query(byte[] query, Compression compression, ConsistencyLevel consistency)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("execute_cql3_query", TMessageType.Call, seqid_));
        execute_cql3_query_args args = new execute_cql3_query_args();
        args.Query = query;
        args.Compression = compression;
        args.Consistency = consistency;
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }