I am aware of how to use basic authentication on the connectionsettings using NEST. But if I wanted to use active directory/ldap authentication, how will I make the connection? Is there any sample available?
Is it sample as passing id/pwd when we use basic authentication?
var settings = new ConnectionSettings(new Uri(mEsQuerySource.Url));
settings.BasicAuthentication("user", "plain text password");
mClient = new ElasticClient(settings);
Thanks!