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

describe_token_map() public method

get the mapping between token->node ip without taking replication into consideration https://issues.apache.org/jira/browse/CASSANDRA-4092
public describe_token_map ( ) : string>.Dictionary
return string>.Dictionary
      public Dictionary<string, string> describe_token_map()
      {
        #if !SILVERLIGHT
        send_describe_token_map();
        return recv_describe_token_map();

        #else
        var asyncResult = Begin_describe_token_map(null, null, );
        return End_describe_token_map(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client