Apache.Cassandra.Cassandra.Client.recv_describe_cluster_name()

Here are the examples of the csharp api class Apache.Cassandra.Cassandra.Client.recv_describe_cluster_name() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: hectorsharp
Source File: Cassandra.cs
public string describe_cluster_name()
      {
        send_describe_cluster_name();
        return recv_describe_cluster_name();
      }

2. Example

Project: cassandra-sharp
Source File: Cassandra.cs
public string describe_cluster_name()
      {
        #if !SILVERLIGHT
        send_describe_cluster_name();
        return recv_describe_cluster_name();

        #else
        var asyncResult = Begin_describe_cluster_name(null, null, );
        return End_describe_cluster_name(asyncResult);

        #endif
      }