Click or drag to resize

ClientEncryptionOptionsWith Method

Returns a new ClientEncryptionOptions instance with some settings changed.

Namespace:  MongoDB.Driver.Encryption
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
public ClientEncryptionOptions With(
	Optional<IMongoClient> keyVaultClient = null,
	Optional<CollectionNamespace> keyVaultNamespace = null,
	Optional<IReadOnlyDictionary<string, IReadOnlyDictionary<string, Object>>> kmsProviders = null
)

Parameters

keyVaultClient (Optional)
Type: MongoDB.DriverOptionalIMongoClient
The key vault client.
keyVaultNamespace (Optional)
Type: MongoDB.DriverOptionalCollectionNamespace
The key vault namespace.
kmsProviders (Optional)
Type: MongoDB.DriverOptionalIReadOnlyDictionaryString, IReadOnlyDictionaryString, Object
The KMS providers.

Return Value

Type: ClientEncryptionOptions
A new ClientEncryptionOptions instance.
See Also