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.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
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