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

send_system_drop_keyspace() public method

public send_system_drop_keyspace ( string keyspace ) : void
keyspace string
return void
      public void send_system_drop_keyspace(string keyspace)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("system_drop_keyspace", TMessageType.Call, seqid_));
        system_drop_keyspace_args args = new system_drop_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_system_drop_keyspace ( AsyncCallback callback, object state, string keyspace ) : IAsyncResult
Cassandra.Client