|
In the C++ driver, URIs can only be constructed from a connection string, and does not support any option setters. Any option supported by the C driver can be passed in through a connection string, and since the C driver supports "tlsDisableCertificateRevocationCheck" the C++ does, too.
CXX-1994 represents long-standing work to add a complete set of getters for URIs (there are roughly 50 C driver URI options of which we only support 13 with getters). I'm going to leave the work of adding a getter for tlsDisableCertificateRevocationCheck to CXX-1994 so all the getters can be added using a uniform approach.
|