I'm attempting to learn the ElasticSearch API using NEST but I've discovered that there is no up-to-date documentation for the NEST (2.0?). The ConnectionSettings class for instance, appears to no longer have a constructor that takes "defaultIndex" as a parameter.
So, as I attempt to follow the example on nest.azurewebsites.net, I'm unable to get by the lines below because, as I mentioned, there is no constructor for the version of NEST that I'm using that takes "defaultIndex" as a parameter. (I used Package Manager in Visual Studio 2013 to add NEST to a test project)
var uri = new Uri("http://mynode.somewhere.com/");
var settings = new ConnectionSettings(uri, defaultIndex: "my-application");
So, does anyone know where I get the latest documentation on the NEST classes?
Thanks much.
Norman