How do you call the Ping command with the new C# driver 2.0? In the old driver it was available via Server.Ping()? Also, Is there a way to find
Ping
Server.Ping()
You can check the cluster's status using its Description property:
Description
var state = _client.Cluster.Description.State
If you want a specific server out of that cluster you can use the Servers property:
Servers
var state = _client.Cluster.Description.Servers.Single().State;