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

describe_schema_versions() public method

for each schema version present in the cluster, returns a list of nodes at that version. hosts that do not respond will be under the key DatabaseDescriptor.INITIAL_VERSION. the cluster is all on the same version if the size of the map is 1.
public describe_schema_versions ( ) : List>.Dictionary
return List>.Dictionary
      public Dictionary<string, List<string>> describe_schema_versions()
      {
        #if !SILVERLIGHT
        send_describe_schema_versions();
        return recv_describe_schema_versions();

        #else
        var asyncResult = Begin_describe_schema_versions(null, null, );
        return End_describe_schema_versions(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client