FluentCassandra.Apache.Cassandra.Cassandra.Client.send_system_update_column_family(CfDef)

Here are the examples of the csharp api class FluentCassandra.Apache.Cassandra.Cassandra.Client.send_system_update_column_family(CfDef) 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_update_column_family(CfDef cf_def)
      {
        #if !SILVERLIGHT
        send_system_update_column_family(cf_def);
        return recv_system_update_column_family();

        #else
        var asyncResult = Begin_system_update_column_family(null, null, cf_def);
        return End_system_update_column_family(asyncResult);

        #endif
      }