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

describe_snitch() public method

returns the snitch used by this cluster
public describe_snitch ( ) : string
return string
      public string describe_snitch()
      {
        #if !SILVERLIGHT
        send_describe_snitch();
        return recv_describe_snitch();

        #else
        var asyncResult = Begin_describe_snitch(null, null, );
        return End_describe_snitch(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client