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

system_drop_keyspace() public method

drops a keyspace and any column families that are part of it. returns the new schema id.
public system_drop_keyspace ( string keyspace ) : string
keyspace string
return string
      public string system_drop_keyspace(string keyspace)
      {
        #if !SILVERLIGHT
        send_system_drop_keyspace(keyspace);
        return recv_system_drop_keyspace();

        #else
        var asyncResult = Begin_system_drop_keyspace(null, null, keyspace);
        return End_system_drop_keyspace(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client