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

send_set_keyspace() public method

public send_set_keyspace ( string keyspace ) : void
keyspace string
return void
      public void send_set_keyspace(string keyspace)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("set_keyspace", TMessageType.Call, seqid_));
        set_keyspace_args args = new set_keyspace_args();
        args.Keyspace = keyspace;
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }

Same methods

Cassandra.Client::send_set_keyspace ( AsyncCallback callback, object state, string keyspace ) : IAsyncResult
Cassandra.Client