I did it but still couldn’t.
var config = new ClientConfiguration();
config.Servers = new List
{
new Uri(“http://couchbasebaseclusternode1”)
};
config.EnableCertificateAuthentication = true;
config.CertificateFactory = CertificateFactory.GetCertificatesFromStore(new CertificateStoreOptions
{
StoreLocation = StoreLocation.LocalMachine,
StoreName = StoreName.TrustedPeople,
X509FindType = X509FindType.FindByThumbprint,
FindValue = “”
});
var cluster = new Cluster(config);
var bucket = cluster.OpenBucket("");