FluentCassandra.Apache.Cassandra.Cassandra.Client.recv_system_drop_keyspace()

Here are the examples of the csharp api class FluentCassandra.Apache.Cassandra.Cassandra.Client.recv_system_drop_keyspace() 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 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
      }