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

set_cql_version() public method

@deprecated This is now a no-op. Please use the CQL3 specific methods instead.
public set_cql_version ( string version ) : void
version string
return void
      public void set_cql_version(string version)
      {
        #if !SILVERLIGHT
        send_set_cql_version(version);
        recv_set_cql_version();

        #else
        var asyncResult = Begin_set_cql_version(null, null, version);
        End_set_cql_version(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client