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

describe_keyspaces() public method

list the defined keyspaces in this cluster
public describe_keyspaces ( ) : List
return List
      public List<KsDef> describe_keyspaces()
      {
        #if !SILVERLIGHT
        send_describe_keyspaces();
        return recv_describe_keyspaces();

        #else
        var asyncResult = Begin_describe_keyspaces(null, null, );
        return End_describe_keyspaces(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client