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

system_update_keyspace() public method

updates properties of a keyspace. returns the new schema id.
public system_update_keyspace ( KsDef ks_def ) : string
ks_def KsDef
return string
      public string system_update_keyspace(KsDef ks_def)
      {
        #if !SILVERLIGHT
        send_system_update_keyspace(ks_def);
        return recv_system_update_keyspace();

        #else
        var asyncResult = Begin_system_update_keyspace(null, null, ks_def);
        return End_system_update_keyspace(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client